MSALAccount constructor

MSALAccount({
  1. required String identifier,
  2. bool isSSOAccount = false,
  3. String? username,
  4. String? environment,
  5. Map<String, dynamic>? accountClaims,
})

Implementation

MSALAccount({
  required this.identifier,
  this.isSSOAccount = false,
  this.username,
  this.environment,
  this.accountClaims,
});