toJson method

Map<String, dynamic> toJson()

Implementation

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