register method
Registers authentication services in the container
This method binds all authentication services to the container, including core contracts and their implementations.
container The dependency injection container
Implementation
@override
void register(ContainerInterface container) {
// Register core contracts
_registerCoreContracts(container);
// Register the main auth manager
_registerAuthManager(container);
}