Offer constructor

Offer({
  1. String? id,
  2. required int type,
  3. String? paymentMode,
})

Implementation

Offer({this.id, required this.type, this.paymentMode});