fromMap static method
override
Construct from Map.
Implementation
static GetForumTopics? fromMap(Map<String, dynamic>? _map) {
if (_map == null) return null;
var _ = _map["@type"];
if (_ != CONSTRUCTOR) return null;
var extra = _map['@extra'];
var clientId = _map['@clientId'];
var chat_id = _map['chat_id']! as int;
var query = _map['query']! as String;
var offset_date = _map['offset_date']! as int;
var offset_message_id = _map['offset_message_id']! as int;
var offset_message_thread_id = _map['offset_message_thread_id']! as int;
var limit = _map['limit']! as int;
return GetForumTopics(
extra: extra,
clientId: clientId,
chat_id: chat_id,
query: query,
offset_date: offset_date,
offset_message_id: offset_message_id,
offset_message_thread_id: offset_message_thread_id,
limit: limit,
);
}