Tarif constructor

Tarif({
  1. int? id,
  2. int? abonnementId,
  3. int? abonnementTarifsDuration,
  4. int? abonnementTarifsFrequence,
  5. int? price,
  6. int? cout,
  7. int? abonnementTarifsPriority,
  8. int? countryPaymentsMethodsId,
  9. String? entryBy,
  10. Payment? payment,
  11. String? googleProductId,
  12. String? appleProductId,
})

Implementation

Tarif({
  this.id,
  this.abonnementId,
  this.abonnementTarifsDuration,
  this.abonnementTarifsFrequence,
  this.price,
  this.cout,
  this.abonnementTarifsPriority,
  this.countryPaymentsMethodsId,
  this.entryBy,
  this.payment,
  this.googleProductId,
  this.appleProductId,
});