k_reclaimable property

num? get k_reclaimable

Implementation

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

Implementation

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