sendUserFeedback static method

Future<void> sendUserFeedback(
  1. String feedback
)

Send a feedback on behalf of the user.

Call when using a in-house feedback screen with a custom design and feel. Feedback will be associated with the current session.

Implementation

static Future<void> sendUserFeedback(String feedback) async {
  TestFairyBase.prepareTwoWayInvoke();
  await TestFairyBase.channel
      .invokeMethod<void>('sendUserFeedback', feedback);
}