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