initialize method

void initialize()

Initializes all the built in interfaces and other services

This method should be called before any other method.

Implementation

void initialize() {
  if (_hasInitialized) {
    return;
  }

  _registerInternalInterfaces();
  _hasInitialized = true;
}