consoleFeedbackFunction function

void consoleFeedbackFunction(
  1. BuildContext context,
  2. String feedbackText,
  3. Uint8List feedbackScreenshot
)

Prints the given feedback to the console. This is useful for debugging purposes.

Implementation

void consoleFeedbackFunction(
  BuildContext context,
  String feedbackText,
  Uint8List feedbackScreenshot,
) {
  print('Feedback text:');
  print(feedbackText);
  print('Size of image: ${feedbackScreenshot.length}');
}