initialize method

Future<void> initialize()

Implementation

Future<void> initialize() async {
  try {
    await _loadStoredAuth();
  } catch (e) {
    throw StorageException(
      'Error inicializando AuthService',
      details: e.toString(),
      type: StorageType.auth,
    );
  }
}