AuthResult constructor

const AuthResult({
  1. required bool isAuthenticated,
  2. Map<String, dynamic>? userInfo,
  3. String? error,
  4. List<String>? validatedScopes,
})

Implementation

const AuthResult({
  required this.isAuthenticated,
  this.userInfo,
  this.error,
  this.validatedScopes,
});