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