Transaction constructor

Transaction({
  1. required DateTime createAtUTC,
  2. required TransactionType transactionType,
  3. required double sumFull,
  4. required String idTransactionString,
  5. bool payCalled = false,
  6. bool checkCalled = false,
  7. bool refundCalled = false,
  8. String? checkPaySystem,
  9. String? checkCheckSystem,
  10. int? idTransactionInt,
})

Implementation

Transaction({
  required this.createAtUTC,
  required this.transactionType,
  required this.sumFull,
  required this.idTransactionString,
  this.payCalled = false,
  this.checkCalled = false,
  this.refundCalled = false,
  this.checkPaySystem,
  this.checkCheckSystem,
  this.idTransactionInt,
});