register abstract method

void register()

Register any application services.

This is where you should bind things into the service container. This method is called immediately when the provider is registered.

@override
void register() {
  app.singleton('mailer', () => SmtpMailer());
}

Implementation

void register();