Org constructor
Org({
- List<
Address?> ? addresses, - List<
UserRef?> ? admins, - String? businessRef,
- String? certificate,
- String? config,
- List<
Contact?> ? contacts, - @JsonKey(name: 'orgID') required String orgId,
- required String orgName,
- UserRef? owner,
- String? publicKey,
- List<
OrgQuota?> ? quotas, - OrgSpacesConnection? spaces,
- OrgUsersConnection? users,
- bool? verified,
Implementation
factory Org({
List<Address?>? addresses,
List<UserRef?>? admins,
String? businessRef,
String? certificate,
String? config,
List<Contact?>? contacts,
@JsonKey(name: 'orgID')
required String orgId,
required String orgName,
UserRef? owner,
String? publicKey,
List<OrgQuota?>? quotas,
OrgSpacesConnection? spaces,
OrgUsersConnection? users,
bool? verified,
}) = _Org;