AuthenticationFailure constructor

AuthenticationFailure(
  1. String? message, [
  2. List properties = const <dynamic>[]
])

Implementation

AuthenticationFailure(this.message, [List properties = const <dynamic>[]])
    : super(message, properties) {
  print('authentication failure');
}