initInstances method

  1. @protected
  2. @mustCallSuper
void initInstances ()
@mustCallSuper, @protected

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

@protected
@mustCallSuper
void initInstances() {
  assert(!_debugInitialized);
  assert(() { _debugInitialized = true; return true; }());
}