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