Organization constructor

const Organization({
  1. required String orgId,
  2. required String name,
  3. required bool isOwner,
  4. required bool isAdmin,
  5. required bool isVerified,
  6. required Map<String, dynamic> config,
  7. required List<OrgQuota> quotas,
})

Implementation

const Organization({
  required this.orgId,
  required this.name,
  required this.isOwner,
  required this.isAdmin,
  required this.isVerified,
  required this.config,
  required this.quotas,
});