AccountInfo constructor

const AccountInfo({
  1. required String accountUuid,
  2. required String emailAddress,
  3. String? organizationUuid,
  4. String? displayName,
  5. bool? hasExtraUsageEnabled,
  6. String? billingType,
  7. String? accountCreatedAt,
  8. String? subscriptionCreatedAt,
  9. String? organizationRole,
  10. String? workspaceRole,
  11. String? organizationName,
})

Implementation

const AccountInfo({
  required this.accountUuid,
  required this.emailAddress,
  this.organizationUuid,
  this.displayName,
  this.hasExtraUsageEnabled,
  this.billingType,
  this.accountCreatedAt,
  this.subscriptionCreatedAt,
  this.organizationRole,
  this.workspaceRole,
  this.organizationName,
});