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