total_count property

num? total_count

Implementation

num? get total_count {
  try {
    if (rawData["total_count"] is num == false){
      return null;
    }
    return rawData["total_count"] as num;
  } catch (e) {
    return null;
  }
}
void total_count=(num? value)

Implementation

set total_count(num? value) {
  rawData["total_count"] = value;
}