Companies constructor
Companies({
- DateTime? dateCreated,
- DateTime? lastUpdated,
- String? companyId,
- int? industryId,
- int? countryId,
- String? companyName,
- String? companyDescription,
- required String companyHandle,
- required String companyDomain,
- required int creditsBalance,
- bool? acceptedEula,
- String? stripeAccountId,
- String? stripeAccountStatus,
Returns a new Companies instance.
Implementation
Companies({
this.dateCreated,
this.lastUpdated,
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,
});