sticker property
File
get
sticker
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
File get sticker {
try {
if (rawData["sticker"] is Map == false) {
return File({});
}
return File(rawData["sticker"] as Map);
} catch (e) {
return File({});
}
}
set
sticker
(File value)
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
set sticker(File value) {
rawData["sticker"] = value.toJson();
}