Company constructor
Company({
- String? companyId,
- String? industryId,
- String? countryId,
- String? companyName,
- String? companyDescription,
- required String companyHandle,
- required String companyDomain,
- required String creditsBalance,
- String? acceptedEula,
- String? stripeAccountId,
- String? stripeAccountStatus,
- String? dateCreated,
- String? lastUpdated,
- 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,
});