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