toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final high = this.high;
  final low = this.low;
  return {'high': ?high, 'low': ?low};
}