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,
  8. String? billingId,
  9. String? subscriptionId,
  10. String? subscriptionPlan,
  11. SubscriptionStatus? subscriptionStatus,
})

Implementation

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