SearchSecretMessages.fromMap constructor
Implementation
SearchSecretMessages.fromMap(Map<String, dynamic> map) {
extra = map['@extra'];
client_id = map['@client_id'];
chat_id = map['chat_id'];
query = map['query'];
offset = map['offset'];
limit = map['limit'];
if (map['filter'] != null) {
filter = TdApiMap.fromMap(map['filter']) as SearchMessagesFilter;
}
}