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