toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final annotations = this.annotations;
  final createTime = this.createTime;
  final customDomainStatus = this.customDomainStatus;
  final deleteTime = this.deleteTime;
  final disabled = this.disabled;
  final displayName = this.displayName;
  final etag = this.etag;
  final labels = this.labels;
  final name = this.name;
  final reconciling = this.reconciling;
  final serve = this.serve;
  final type = this.type;
  final uid = this.uid;
  final updateTime = this.updateTime;
  return {
    'annotations': ?annotations,
    'createTime': ?createTime,
    'customDomainStatus': ?customDomainStatus,
    'deleteTime': ?deleteTime,
    'disabled': ?disabled,
    'displayName': ?displayName,
    'etag': ?etag,
    'labels': ?labels,
    'name': ?name,
    'reconciling': ?reconciling,
    'serve': ?serve,
    'type': ?type,
    'uid': ?uid,
    'updateTime': ?updateTime,
  };
}