toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final annotations = this.annotations;
  final contents = this.contents;
  final createTime = this.createTime;
  final hash = this.hash;
  final labels = this.labels;
  final mimeType = this.mimeType;
  final name = this.name;
  final sizeBytes = this.sizeBytes;
  final updateTime = this.updateTime;
  return {
    'annotations': ?annotations,
    'contents': ?contents,
    'createTime': ?createTime,
    'hash': ?hash,
    'labels': ?labels,
    'mimeType': ?mimeType,
    'name': ?name,
    'sizeBytes': ?sizeBytes,
    'updateTime': ?updateTime,
  };
}