setChannelParent method

void setChannelParent({
  1. required Channel parent,
})

Implementation

void setChannelParent({required Channel parent}) =>
    _client.writeMessage(new Proto.ChannelState()
      ..channelId = channelId
      ..parent = parent.channelId);