toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final certificates = this.certificates;
  final createTime = this.createTime;
  final description = this.description;
  final hostname = this.hostname;
  final labels = this.labels;
  final matcher = this.matcher;
  final name = this.name;
  final state = this.state;
  final updateTime = this.updateTime;
  return {
    'certificates': ?certificates,
    'createTime': ?createTime,
    'description': ?description,
    'hostname': ?hostname,
    'labels': ?labels,
    'matcher': ?matcher,
    'name': ?name,
    'state': ?state,
    'updateTime': ?updateTime,
  };
}