submitFeedback method

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

Submits feedback with the given message and type.

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

Implementation

@override
Future<void> submitFeedback(
  String message,
  FeedbackType type,
  String? logFilePath,
) async {
  final response = await apiService.callFunction(
    function: "local_lbplanner_feedback_submit_feedback",
    token: token.lbPlannerApiToken,
    body: {
      "content": message,
      "type": type.index,
      "logfile": logFilePath,
    },
  );

  // TODO: replace with `response.failed` once #52 is merged
  if (response.isNotOk) {
    throw Exception("Failed to submit feedback: ${response.body}");
  }
}