toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final fileContents = this.fileContents;
final filePath = this.filePath;
final fileType = this.fileType;
return {
'fileContents': ?fileContents,
'filePath': ?filePath,
'fileType': ?fileType,
};
}