swap_total property

String? get swap_total

Implementation

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

Implementation

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