toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final containerType = this.containerType;
  final sha1Checksum = this.sha1Checksum;
  final source = this.source;
  return {
    'containerType': ?containerType,
    'sha1Checksum': ?sha1Checksum,
    'source': ?source,
  };
}