Company constructor

Company({
  1. String? companyId,
  2. String? industryId,
  3. String? countryId,
  4. String? companyName,
  5. String? companyDescription,
  6. required String companyHandle,
  7. required String companyDomain,
  8. required String creditsBalance,
  9. String? acceptedEula,
  10. String? stripeAccountId,
  11. String? stripeAccountStatus,
  12. String? dateCreated,
  13. String? lastUpdated,
  14. String? active,
})

Returns a new Company instance.

Implementation

Company({
  this.companyId,
  this.industryId,
  this.countryId,
  this.companyName,
  this.companyDescription,
  required this.companyHandle,
  required this.companyDomain,
  required this.creditsBalance,
  this.acceptedEula,
  this.stripeAccountId,
  this.stripeAccountStatus,
  this.dateCreated,
  this.lastUpdated,
  this.active,
});