setChannelDescription method

void setChannelDescription({
  1. required String description,
})

Implementation

void setChannelDescription({required String description}) =>
    _client.writeMessage(new Proto.ChannelState()
      ..channelId = channelId
      ..description = description);