active_anon property

num? get active_anon

Implementation

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

Implementation

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