submitFeedback method
- String message,
- FeedbackType type,
- {String? logFilePath}
Submits a new feedback with the given message
and type
.
If the type
is FeedbackType.bug, logFilePath
should be provided.
Implementation
Future<void> submitFeedback(
String message,
FeedbackType type, {
String? logFilePath,
}) async {
pause();
await AsyncValue.guard(
() => _feedbackRepository.submitFeedback(
message,
type,
logFilePath,
),
);
resume();
}