AuthenticationResult constructor

AuthenticationResult({
  1. Authentication? authentication,
  2. String? errorCode,
  3. String? errorMessage,
})

Implementation

AuthenticationResult({
  this.authentication,
  this.errorCode,
  this.errorMessage,
});