DPaymentMethod constructor

DPaymentMethod({
  1. required String id,
  2. required String title,
  3. required String subTitle,
  4. required String subTitleKh,
  5. required bool isDefault,
  6. required String status,
  7. required String type,
  8. required DateTime createdDate,
  9. required DateTime updatedDate,
})

Implementation

DPaymentMethod({
  required this.id,
  required this.logo,
  required this.title,
  required this.subTitle,
  required this.subTitleKh,
  required this.isDefault,
  required this.status,
  required this.type,
  required this.createdDate,
  required this.updatedDate,
});