Offer constructor

Offer({
  1. required String id,
  2. required String title,
  3. required String benefits,
  4. required String iconUrl,
})

Implementation

Offer({
  required this.id,
  required this.title,
  required this.benefits,
  required this.iconUrl,
});