BusinessProfile constructor

BusinessProfile({
  1. String? mcc,
  2. String? name,
  3. String? productDescription,
  4. Address? supportAddress,
  5. String? supportEmail,
  6. String? supportPhone,
  7. String? supportUrl,
  8. String? url,
})

Implementation

BusinessProfile(
    {this.mcc,
    this.name,
    this.productDescription,
    this.supportAddress,
    this.supportEmail,
    this.supportPhone,
    this.supportUrl,
    this.url});