AddressFee constructor

AddressFee({
  1. required String destination,
  2. required String assetId,
  3. required String fee,
  4. String? tag,
})

Implementation

AddressFee({
  required this.destination,
  required this.assetId,
  required this.fee,
  this.tag,
});