getLeftChannels method

Future<Result<MessagesChatsBase>> getLeftChannels({
  1. required int offset,
})

Get Left Channels.

ID: 8341ecc0.

Implementation

Future<Result<MessagesChatsBase>> getLeftChannels({
  required int offset,
}) async {
  // Preparing the request.
  final request = ChannelsGetLeftChannels(
    offset: offset,
  );

  // Invoke and wait for response.
  final response = await _c.invoke(request);

  // Return the result.
  return response._to<MessagesChatsBase>();
}