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