TransactionCost constructor

TransactionCost({
  1. required int gasPrice,
  2. required int gasUsed,
  3. required int minFee,
  4. required int maxFee,
})

Implementation

TransactionCost({
  required this.gasPrice,
  required this.gasUsed,
  required this.minFee,
  required this.maxFee,
});