toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final annotations = this.annotations;
  final createTime = this.createTime;
  final fetchTime = this.fetchTime;
  final hashes = this.hashes;
  final name = this.name;
  final owner = this.owner;
  final sizeBytes = this.sizeBytes;
  final updateTime = this.updateTime;
  return {
    'annotations': ?annotations,
    'createTime': ?createTime,
    'fetchTime': ?fetchTime,
    'hashes': ?hashes,
    'name': ?name,
    'owner': ?owner,
    'sizeBytes': ?sizeBytes,
    'updateTime': ?updateTime,
  };
}