submitFeedback method

Future<void> submitFeedback(
  1. String message,
  2. FeedbackType type,
  3. {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();
}