Merchant constructor

Merchant({
  1. String? id,
  2. String? name,
  3. String? address,
  4. String? zipCode,
  5. String? city,
  6. String? country,
  7. String? fiscalCode,
  8. String? profileImgUrl,
  9. List<PointOfSale>? posList,
})

Implementation

Merchant(
    {this.id,
    this.name,
    this.address,
    this.zipCode,
    this.city,
    this.country,
    this.fiscalCode,
    this.profileImgUrl,
    this.posList});