How can I fix the error of "unassigned variable" even tho the variable has been initialized? – Flutter
I have this code : void main() { RethinkDb r = RethinkDb(); Connection connection; UserService sut; setUp(() async { connection = await r.connect(host: "127.0.0.1", port: 28015); await createDb(r, connection); sut = UserService(r, connection); // second line }); test('creates a new…