ThorchainMsgSend constructor

ThorchainMsgSend({
  1. required CosmosBaseAddress fromAddress,
  2. required CosmosBaseAddress toAddress,
  3. required List<Coin> amount,
})

Implementation

ThorchainMsgSend({
  required this.fromAddress,
  required this.toAddress,
  required List<Coin> amount,
}) : amount = amount.mutable;