toJson method

Map<String, dynamic> toJson()

Implementation

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