HttpAuthResponse constructor

HttpAuthResponse({
  1. HttpAuthResponseAction? action,
  2. String password = "",
  3. bool permanentPersistence = false,
  4. String username = "",
})

Implementation

HttpAuthResponse({
  HttpAuthResponseAction? action,
  this.password = "",
  this.permanentPersistence = false,
  this.username = "",
}) : action = action ?? HttpAuthResponseAction.CANCEL;