toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final dimensionName = this.dimensionName;
  final etag = this.etag;
  final id = this.id;
  final kind = this.kind;
  final matchType = this.matchType;
  final value = this.value;
  return {
    'dimensionName': ?dimensionName,
    'etag': ?etag,
    'id': ?id,
    'kind': ?kind,
    'matchType': ?matchType,
    'value': ?value,
  };
}