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