endAppStartup method

  1. @override
void endAppStartup(
  1. Map<String, String>? properties
)
override

Signifies that application startup has ended.

Implementation

@override
void endAppStartup(Map<String, String>? properties) {
  throwIfNotStarted();
  methodChannel.invokeMethod(
    _endStartupMomentMethodName,
    {_propertiesArgName: properties},
  );
}