toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final kind = this.kind;
  final queryPath = this.queryPath;
  final queryValue = this.queryValue;
  final selfLink = this.selfLink;
  final variableKey = this.variableKey;
  final variableValue = this.variableValue;
  return {
    'kind': ?kind,
    'queryPath': ?queryPath,
    'queryValue': ?queryValue,
    'selfLink': ?selfLink,
    'variableKey': ?variableKey,
    'variableValue': ?variableValue,
  };
}