MsgIBCCloseChannel constructor

MsgIBCCloseChannel({
  1. String? channel,
})

Implementation

factory MsgIBCCloseChannel({
  $core.String? channel,
}) {
  final _result = create();
  if (channel != null) {
    _result.channel = channel;
  }
  return _result;
}