toJson method

Map<String, dynamic> toJson()

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,
  };
}