MsgCreateVestingAccount constructor

const MsgCreateVestingAccount({
  1. String? fromAddress,
  2. String? toAddress,
  3. List<Coin> amount = const [],
  4. BigInt? startTime,
  5. BigInt? endTime,
})

Implementation

const MsgCreateVestingAccount({
  this.fromAddress,
  this.toAddress,
  this.amount = const [],
  this.startTime,
  this.endTime,
});