toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final drive = this.drive;
  final driveItem = this.driveItem;
  final fileComment = this.fileComment;
  final teamDrive = this.teamDrive;
  return {
    'drive': ?drive,
    'driveItem': ?driveItem,
    'fileComment': ?fileComment,
    'teamDrive': ?teamDrive,
  };
}