initInstances method

  1. @override
void initInstances ()
override

The initialization method. Subclasses override this method to hook into the platform and otherwise configure their services. Subclasses must call "super.initInstances()".

By convention, if the service is to be provided as a singleton, it should be exposed as MixinClassName.instance, a static getter that returns MixinClassName._instance, a static field that is set by initInstances().

Implementation

@override
void initInstances() {
  super.initInstances();
  _instance = this;
  ui.window.onBeginFrame = _handleBeginFrame;
  ui.window.onDrawFrame = _handleDrawFrame;
  SystemChannels.lifecycle.setMessageHandler(_handleLifecycleMessage);
}