Answers for "if you need the binding to be initialized before calling runApp."

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 "if you need the binding to be initialized before calling runApp."

Browse Popular Code Answers by Language