toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['low'] = this.low;
  data['high'] = this.high;
  data['selectedLow'] = this.selectedLow;
  data['selectedHigh'] = this.selectedHigh;
  data['__typename'] = this.sTypename;
  return data;
}