getMessageAuthor method
Get Message Author.
ID: ece2a0e6.
Implementation
Future<Result<UserBase>> getMessageAuthor({
required InputChannelBase channel,
required int id,
}) async {
// Preparing the request.
final request = ChannelsGetMessageAuthor(channel: channel, id: id);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<UserBase>();
}