LogInWithEmailAndPasswordFailure constructor

const LogInWithEmailAndPasswordFailure([
  1. String code = 'unknown',
  2. String message = 'An unknown exception occurred.'
])

Implementation

const LogInWithEmailAndPasswordFailure([
  this.code = 'unknown',
  this.message = 'An unknown exception occurred.',
]);