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