Answers for "E/flutter (18221): If you're running a test, you can call the `TestWidgetsFlutterBinding.ensureInitialized()` as the first line in your test's `main()` method to initialize the binding."

7

ServicesBinding.defaultBinaryMessenger was accessed before the binding was initialized.

// add this, and it should be the first line in main method
  WidgetsFlutterBinding.ensureInitialized();
Posted by: Guest on June-20-2020

Code answers related to "E/flutter (18221): If you're running a test, you can call the `TestWidgetsFlutterBinding.ensureInitialized()` as the first line in your test's `main()` method to initialize the binding."

Browse Popular Code Answers by Language