toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final annotations = this.annotations;
  final categories = this.categories;
  final createTime = this.createTime;
  final description = this.description;
  final etag = this.etag;
  final name = this.name;
  final policySets = this.policySets;
  final reconciling = this.reconciling;
  final revisionId = this.revisionId;
  final state = this.state;
  final updateTime = this.updateTime;
  return {
    'annotations': ?annotations,
    'categories': ?categories,
    'createTime': ?createTime,
    'description': ?description,
    'etag': ?etag,
    'name': ?name,
    'policySets': ?policySets,
    'reconciling': ?reconciling,
    'revisionId': ?revisionId,
    'state': ?state,
    'updateTime': ?updateTime,
  };
}