init method

  1. @override
void init()
override

Implementation

@override
void init() {
  ComponentRegistry().init(
    NotificationDashboardComponentConstructorDefault(),
    NotificationDashboardComponentEditorConstructor(),
  );

  // wizards
  Apis.apis().getWizardApi()
      .register(NotificationDashboardDialogDWizard());

  // initialise the repository
  AbstractRepositorySingleton.singleton = RepositorySingleton();

  // initialise the platform
  AbstractNotificationPlatform.platform = NotificationPlatform();
}