Account constructor

Account({
  1. required String accountId,
  2. required String awsAccountId,
  3. required String name,
  4. AccountType? accountType,
  5. DateTime? createdTimestamp,
  6. License? defaultLicense,
  7. List<SigninDelegateGroup>? signinDelegateGroups,
  8. List<License>? supportedLicenses,
})

Implementation

Account({
  required this.accountId,
  required this.awsAccountId,
  required this.name,
  this.accountType,
  this.createdTimestamp,
  this.defaultLicense,
  this.signinDelegateGroups,
  this.supportedLicenses,
});