swap_total property

num? get swap_total

Implementation

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

Implementation

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