Items constructor

Items({
  1. required String id,
  2. required String name,
  3. required String nameKh,
  4. required bool isFavorite,
  5. required double fee,
  6. required String feeDisplay,
  7. required bool supportDeeplink,
  8. required bool supportCheckoutPage,
})

Implementation

Items({
  required this.id,
  required this.name,
  required this.nameKh,
  required this.logo,
  required this.isFavorite,
  required this.fee,
  required this.feeDisplay,
  required this.supportDeeplink,
  required this.supportCheckoutPage,
});