toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final annotations = this.annotations;
  final createTime = this.createTime;
  final cryptoKeyName = this.cryptoKeyName;
  final displayName = this.displayName;
  final etag = this.etag;
  final labels = this.labels;
  final loggingConfig = this.loggingConfig;
  final name = this.name;
  final uid = this.uid;
  final updateTime = this.updateTime;
  return {
    'annotations': ?annotations,
    'createTime': ?createTime,
    'cryptoKeyName': ?cryptoKeyName,
    'displayName': ?displayName,
    'etag': ?etag,
    'labels': ?labels,
    'loggingConfig': ?loggingConfig,
    'name': ?name,
    'uid': ?uid,
    'updateTime': ?updateTime,
  };
}