deleteChannel method
Delete Channel.
ID: c0111fe3.
Implementation
Future<Result<UpdatesBase>> deleteChannel({
required InputChannelBase channel,
}) async {
// Preparing the request.
final request = ChannelsDeleteChannel(channel: channel);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<UpdatesBase>();
}