swap_cached property

num? get swap_cached

Implementation

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

Implementation

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