Message_MsgStrideLiquidStakingStake constructor

Message_MsgStrideLiquidStakingStake({
  1. String? creator,
  2. String? amount,
  3. String? hostDenom,
})

Implementation

factory Message_MsgStrideLiquidStakingStake({
  $core.String? creator,
  $core.String? amount,
  $core.String? hostDenom,
}) {
  final $result = create();
  if (creator != null) {
    $result.creator = creator;
  }
  if (amount != null) {
    $result.amount = amount;
  }
  if (hostDenom != null) {
    $result.hostDenom = hostDenom;
  }
  return $result;
}