User constructor

User({
  1. required AuthenticationType authenticationType,
  2. String? arn,
  3. DateTime? createdTime,
  4. bool? enabled,
  5. String? firstName,
  6. String? lastName,
  7. String? status,
  8. String? userName,
})

Implementation

User({
  required this.authenticationType,
  this.arn,
  this.createdTime,
  this.enabled,
  this.firstName,
  this.lastName,
  this.status,
  this.userName,
});