toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final argumentKind = this.argumentKind;
  final dataType = this.dataType;
  final isAggregate = this.isAggregate;
  final mode = this.mode;
  final name = this.name;
  return {
    'argumentKind': ?argumentKind,
    'dataType': ?dataType,
    'isAggregate': ?isAggregate,
    'mode': ?mode,
    'name': ?name,
  };
}