AuthenticationResponse constructor

AuthenticationResponse({
  1. String? healthcarePartyId,
  2. String? reason,
  3. required bool successful,
  4. String? username,
})

Returns a new AuthenticationResponse instance.

Implementation

AuthenticationResponse({
  this.healthcarePartyId,
  this.reason,
  required this.successful,
  this.username,
});