TonTransaction constructor

TonTransaction({
  1. required String id,
  2. required int gramAmount,
  3. required bool isRefund,
  4. required int date,
  5. TonTransactionType? type,
})

Implementation

TonTransaction({
  required this.id,
  required this.gramAmount,
  required this.isRefund,
  required this.date,
  this.type,
});