installFeedbackHandler static method

Future<void> installFeedbackHandler(
  1. String appToken
)

Initialize shake gesture recognizer for launching the feedback form.

No need to call this if begin is also called.

Implementation

static Future<void> installFeedbackHandler(String appToken) async {
  TestFairyBase.prepareTwoWayInvoke();

  await TestFairyBase.channel
      .invokeMethod<void>('installFeedbackHandler', appToken);
}