Suggest constructor

Suggest({
  1. String? vendorName,
  2. String? ownerName,
  3. int? hpNumber,
  4. int? telNumber,
  5. String? emailAddress,
  6. String? street,
  7. int? postalCode,
  8. String? city,
  9. String? state,
  10. String? country,
})

Implementation

Suggest(
    {this.vendorName,
    this.ownerName,
    this.hpNumber,
    this.telNumber,
    this.emailAddress,
    this.street,
    this.postalCode,
    this.city,
    this.state,
    this.country});