toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'name'] = this.name;
json[r'contentType'] = this.contentType;
json[r'contentLength'] = this.contentLength;
json[r'id'] = this.id;
return json;
}