sets property
List<StickerSetInfo>
get
sets
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
List<StickerSetInfo> get sets {
try {
if (rawData["sets"] is List == false) {
return [];
}
return (rawData["sets"] as List).map((e) => StickerSetInfo(e as Map)).toList().cast<StickerSetInfo>();
} catch (e) {
return [];
}
}
set
sets
(List<StickerSetInfo> values)
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
set sets(List<StickerSetInfo> values) {
rawData["sets"] = values.map((value) => value.toJson()).toList();
}