boot method

  1. @override
Future<void> boot(
  1. ContainerInterface container
)
override

Boots the authentication services

This method performs any post-registration initialization, such as setting up driver factories and cleanup schedules.

container The dependency injection container

Implementation

@override
Future<void> boot(ContainerInterface container) async {
  // Perform any post-registration initialization
  await _bootAuthServices(container);
}