submitFeedback abstract method

Future<void> submitFeedback(
  1. String message,
  2. FeedbackType type,
  3. String? logFilePath
)

Submits feedback with the given message and type.

If type is FeedbackType.bug, the logFilePath should be provided.

Implementation

Future<void> submitFeedback(
  String message,
  FeedbackType type,
  String? logFilePath,
);