statistical_graph_error property
StatisticalGraphError
get
statistical_graph_error
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
StatisticalGraphError get statistical_graph_error {
try {
if (rawData["statistical_graph_error"] is Map == false) {
return StatisticalGraphError({});
}
return StatisticalGraphError(rawData["statistical_graph_error"] as Map);
} catch (e) {
return StatisticalGraphError({});
}
}
set
statistical_graph_error
(StatisticalGraphError value)
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
set statistical_graph_error(StatisticalGraphError value) {
rawData["statistical_graph_error"] = value.toJson();
}