toJson method

Map<String, dynamic> toJson()

Implementation

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