toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final driveFile = this.driveFile;
  final driveFolder = this.driveFolder;
  final file = this.file;
  final folder = this.folder;
  final name = this.name;
  final title = this.title;
  return {
    'driveFile': ?driveFile,
    'driveFolder': ?driveFolder,
    'file': ?file,
    'folder': ?folder,
    'name': ?name,
    'title': ?title,
  };
}