Revert "Updated feedback to include screenshot and drawings"

This reverts commit 7b3c0b4885.
This commit is contained in:
2024-03-17 22:49:59 +01:00
parent ac1ed1a2b0
commit 97b414412d
17 changed files with 111 additions and 186 deletions

View File

@ -6,14 +6,12 @@ part 'addFeedbackParams.g.dart';
class AddFeedbackParams {
String user;
String feedback;
String? screenshot;
int appVersion;
AddFeedbackParams({
required this.user,
required this.feedback,
this.screenshot,
required this.appVersion,
});