swap_total property
      
      String?
      get
      swap_total
      
    
    
Generated
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) 
      
    
    
Generated
Implementation
set swap_total(String? value) {
  rawData["swap_total"] = value;
}