MsgIBCSend constructor
MsgIBCSend(
{ - String? channel,
- Int64? timeoutHeight,
- Int64? timeoutTimestamp,
- List<int>? data,
})
Implementation
factory MsgIBCSend({
$core.String? channel,
$fixnum.Int64? timeoutHeight,
$fixnum.Int64? timeoutTimestamp,
$core.List<$core.int>? data,
}) {
final _result = create();
if (channel != null) {
_result.channel = channel;
}
if (timeoutHeight != null) {
_result.timeoutHeight = timeoutHeight;
}
if (timeoutTimestamp != null) {
_result.timeoutTimestamp = timeoutTimestamp;
}
if (data != null) {
_result.data = data;
}
return _result;
}