GetChatHistory constructor
const
GetChatHistory({})
Returns messages in a chat. The messages are returned in a reverse chronological order (i.e., in order of decreasing message_id).. For optimal performance, the number of returned messages is chosen by TDLib. This is an offline request if only_local is true
Implementation
const GetChatHistory({
required this.chatId,
required this.fromMessageId,
required this.offset,
required this.limit,
required this.onlyLocal,
});