toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final changeType = this.changeType;
final drive = this.drive;
final driveId = this.driveId;
final file = this.file;
final fileId = this.fileId;
final kind = this.kind;
final removed = this.removed;
final teamDrive = this.teamDrive;
final teamDriveId = this.teamDriveId;
final time = this.time;
final type = this.type;
return {
'changeType': ?changeType,
'drive': ?drive,
'driveId': ?driveId,
'file': ?file,
'fileId': ?fileId,
'kind': ?kind,
'removed': ?removed,
'teamDrive': ?teamDrive,
'teamDriveId': ?teamDriveId,
'time': ?time?.toUtc().toIso8601String(),
'type': ?type,
};
}