Stickers.fromMap constructor
Implementation
Stickers.fromMap(Map<String, dynamic> map) {
extra = map['@extra'];
client_id = map['@client_id'];
if (map['stickers'] != null) {
stickers = [];
for (var someValue in map['stickers']) {
if (someValue != null) {
stickers?.add(TdApiMap.fromMap(someValue) as Sticker);
}
}
}
}