toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final customConstraints = this.customConstraints;
  final name = this.name;
  final overlay = this.overlay;
  final resourceCounts = this.resourceCounts;
  final state = this.state;
  final violationsCount = this.violationsCount;
  return {
    'createTime': ?createTime,
    'customConstraints': ?customConstraints,
    'name': ?name,
    'overlay': ?overlay,
    'resourceCounts': ?resourceCounts,
    'state': ?state,
    'violationsCount': ?violationsCount,
  };
}