toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final allowlistedCertificates = this.allowlistedCertificates;
  final createTime = this.createTime;
  final description = this.description;
  final etag = this.etag;
  final labels = this.labels;
  final name = this.name;
  final spiffeTrustStores = this.spiffeTrustStores;
  final trustStores = this.trustStores;
  final updateTime = this.updateTime;
  return {
    'allowlistedCertificates': ?allowlistedCertificates,
    'createTime': ?createTime,
    'description': ?description,
    'etag': ?etag,
    'labels': ?labels,
    'name': ?name,
    'spiffeTrustStores': ?spiffeTrustStores,
    'trustStores': ?trustStores,
    'updateTime': ?updateTime,
  };
}