statistics property

String? get statistics

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

String? get statistics {
  try {
    if (rawData["statistics"] is String == false) {
      return null;
    }
    return rawData["statistics"] as String;
  } catch (e) {
    return null;
  }
}
set statistics (String? value)

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

set statistics(String? value) {
  rawData["statistics"] = value;
}