manifested_img_path property
Object?
get
manifested_img_path
Implementation
Object? get manifested_img_path {
try {
if (rawData["manifested_img_path"] is Object == false) {
return null;
}
return rawData["manifested_img_path"] as Object;
} catch (e) {
return null;
}
}