toJson method

Map<String, dynamic> toJson()

Implementation

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