Account constructor
Account({
- required String accountId,
- required String awsAccountId,
- required String name,
- AccountType? accountType,
- DateTime? createdTimestamp,
- License? defaultLicense,
- List<
SigninDelegateGroup> ? signinDelegateGroups, - List<
License> ? supportedLicenses,
Implementation
Account({
required this.accountId,
required this.awsAccountId,
required this.name,
this.accountType,
this.createdTimestamp,
this.defaultLicense,
this.signinDelegateGroups,
this.supportedLicenses,
});