toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bucket = this.bucket;
  final manifest = this.manifest;
  final prefixList = this.prefixList;
  return {
    'bucket': ?bucket,
    'manifest': ?manifest,
    'prefixList': ?prefixList,
  };
}