authFailureFromRejection function

AuthFailure authFailureFromRejection(
  1. CredentialRejection rejection
)

Implementation

AuthFailure authFailureFromRejection(CredentialRejection rejection) =>
    AuthFailure(
      reason: rejection.reason,
      message: rejection.message,
      arguments: rejection.arguments,
      argumentsKeywords: rejection.argumentsKeywords,
    );