toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final annotations = this.annotations;
  final attachmentNamespace = this.attachmentNamespace;
  final createTime = this.createTime;
  final files = this.files;
  final name = this.name;
  final ociVersionName = this.ociVersionName;
  final target = this.target;
  final type = this.type;
  final updateTime = this.updateTime;
  return {
    'annotations': ?annotations,
    'attachmentNamespace': ?attachmentNamespace,
    'createTime': ?createTime,
    'files': ?files,
    'name': ?name,
    'ociVersionName': ?ociVersionName,
    'target': ?target,
    'type': ?type,
    'updateTime': ?updateTime,
  };
}