AuthRequiredResponse constructor Null safety

AuthRequiredResponse(
  1. {bool? authRequired,
  2. String? challenge,
  3. String? messageId,
  4. String? salt,
  5. required String rawStatus}
)

Implementation

AuthRequiredResponse(
    {this.authRequired,
    this.challenge,
    this.messageId,
    this.salt,
    required this.rawStatus});