toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final aggregationFunction = this.aggregationFunction;
  final alias = this.alias;
  final name = this.name;
  final operator = this.operator;
  final value = this.value;
  return {
    'aggregationFunction': ?aggregationFunction,
    'alias': ?alias,
    'name': ?name,
    'operator': ?operator,
    'value': ?value,
  };
}