toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final buckets = this.buckets;
  final objectType = this.objectType;
  final operatorName = this.operatorName;
  final sourceName = this.sourceName;
  return {
    'buckets': ?buckets,
    'objectType': ?objectType,
    'operatorName': ?operatorName,
    'sourceName': ?sourceName,
  };
}