initializationComplete method

  1. @protected
Future<void> initializationComplete()

Alert the engine that the binding is registered. This instructs the engine to register its top level window handler on Windows. This signals that the app is able to process "System.requestAppExit" signals from the engine.

Implementation

@protected
Future<void> initializationComplete() async {
  await SystemChannels.platform.invokeMethod('System.initializationComplete');
}