SearchInstalledStickerSets.fromMap constructor

SearchInstalledStickerSets.fromMap(
  1. Map<String, dynamic> map
)

Implementation

SearchInstalledStickerSets.fromMap(Map<String, dynamic> map) {
  extra = map['@extra'];
  client_id = map['@client_id'];
  if (map['sticker_type'] != null) {
    sticker_type = TdApiMap.fromMap(map['sticker_type']) as StickerType;
  }
  query = map['query'];
  limit = map['limit'];
}