ReceivedHttpAuthResponse.useCredential constructor

ReceivedHttpAuthResponse.useCredential(
  1. String username,
  2. String password
)

Implementation

factory ReceivedHttpAuthResponse.useCredential(
  String username,
  String password,
) {
  return ReceivedHttpAuthResponse._(
    ReceivedHttpAuthResponseAction.useCredential,
    username,
    password,
  );
}