DTransaction constructor

DTransaction({
  1. required String tranType,
  2. required String tranId,
  3. required double amount,
  4. required String amountDisplay,
  5. required String currency,
  6. required String tranDate,
  7. required String descriptionEn,
  8. required String descriptionKm,
})

Implementation

DTransaction({
  required this.tranType,
  required this.tranId,
  required this.amount,
  required this.amountDisplay,
  required this.currency,
  required this.tranDate,
  required this.descriptionEn,
  required this.descriptionKm,
});