MsgSend constructor

MsgSend({
  1. required String fromAddress,
  2. required String toAddress,
  3. required List<StdCoin> amount,
})

Public constructor.

Implementation

MsgSend({
  required this.fromAddress,
  required this.toAddress,
  required this.amount,
}) : super(type: 'cosmos-sdk/MsgSend', value: {});