CompaniesUpdate constructor

CompaniesUpdate({
  1. int? industryId,
  2. int? countryId,
  3. String? companyName,
  4. String? companyDescription,
  5. String? companyHandle,
  6. String? companyDomain,
  7. int? creditsBalance,
  8. bool? acceptedEula,
  9. String? stripeAccountId,
  10. String? stripeAccountStatus,
})

Returns a new CompaniesUpdate instance.

Implementation

CompaniesUpdate({
  this.industryId,
  this.countryId,
  this.companyName,
  this.companyDescription,
  this.companyHandle,
  this.companyDomain,
  this.creditsBalance,
  this.acceptedEula,
  this.stripeAccountId,
  this.stripeAccountStatus,
});