CompaniesInput constructor

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

Returns a new CompaniesInput instance.

Implementation

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