ChannelLeave constructor

ChannelLeave({
  1. String? channelId,
})

Implementation

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