MsgIBCSend constructor

MsgIBCSend({
  1. String? channel,
  2. Int64? timeoutHeight,
  3. Int64? timeoutTimestamp,
  4. 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;
}