delete method

Future<EmptyResponse> delete()

Delete this channel. Messages are permanently removed.

Implementation

Future<EmptyResponse> delete() async {
  _checkInitialized();
  return _client.deleteChannel(id!, type);
}