Fee constructor

const Fee({
  1. required double blockchainFee,
  2. required double processingFee,
  3. required double total,
})

Implementation

const Fee({
  required this.blockchainFee,
  required this.processingFee,
  required this.total,
});