Station constructor

Station({
  1. int? id,
  2. int? merchantId,
  3. String? stationId,
  4. String? name,
  5. String? company,
  6. String? managerName,
  7. String? managerEmail,
  8. String? managerPhone,
  9. String? ownerName,
  10. String? ownerEmail,
  11. String? ownerPhone,
  12. String? brand,
  13. String? latitude,
  14. String? longitude,
  15. String? street,
  16. String? city,
  17. String? state,
  18. String? zip,
  19. int? countryId,
  20. String? image,
  21. String? instagramUrl,
  22. String? twitterUrl,
  23. String? facebookUrl,
  24. int? status,
  25. String? createdAt,
  26. String? updatedAt,
  27. String? deletedAt,
  28. int? isOutOfService,
  29. String? openAt,
  30. String? closeAt,
  31. int? petrolPrice,
  32. int? kerosenePrice,
  33. int? dieselPrice,
  34. int? hr24Operation,
  35. String? url,
  36. double? averageRating,
})

Implementation

Station(
    {this.id,
    this.merchantId,
    this.stationId,
    this.name,
    this.company,
    this.managerName,
    this.managerEmail,
    this.managerPhone,
    this.ownerName,
    this.ownerEmail,
    this.ownerPhone,
    this.brand,
    this.latitude,
    this.longitude,
    this.street,
    this.city,
    this.state,
    this.zip,
    this.countryId,
    this.image,
    this.instagramUrl,
    this.twitterUrl,
    this.facebookUrl,
    this.status,
    this.createdAt,
    this.updatedAt,
    this.deletedAt,
    this.isOutOfService,
    this.openAt,
    this.closeAt,
    this.petrolPrice,
    this.kerosenePrice,
    this.dieselPrice,
    this.hr24Operation,
    this.url,
    this.averageRating});