toJson method

Map<String, dynamic> toJson()

Implementation

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