toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final annotations = this.annotations;
  final content = this.content;
  final digest = this.digest;
  final downloadLocation = this.downloadLocation;
  final mediaType = this.mediaType;
  final name = this.name;
  final uri = this.uri;
  return {
    'annotations': ?annotations,
    'content': ?content,
    'digest': ?digest,
    'downloadLocation': ?downloadLocation,
    'mediaType': ?mediaType,
    'name': ?name,
    'uri': ?uri,
  };
}