Companies constructor

Companies({
  1. DateTime? dateCreated,
  2. DateTime? lastUpdated,
  3. String? companyId,
  4. int? industryId,
  5. int? countryId,
  6. String? companyName,
  7. String? companyDescription,
  8. required String companyHandle,
  9. required String companyDomain,
  10. required int creditsBalance,
  11. bool? acceptedEula,
  12. String? stripeAccountId,
  13. 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,
});