AuthResponse constructor
- @Deprecated('Use LoginOTPResponse from auth_models.dart instead')
const
AuthResponse(
{ - required String accessToken,
- required String refreshToken,
- required String tokenType,
- required int expiresIn,
- String? organizationId,
- String? organizationName,
})
Implementation
@Deprecated('Use LoginOTPResponse from auth_models.dart instead')
const factory AuthResponse({
required String accessToken,
required String refreshToken,
required String tokenType,
required int expiresIn,
String? organizationId,
String? organizationName,
}) = _AuthResponse;