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