pause static method

Future<void> pause()

Pauses the current session.

This method stops recoding of the current session until resume has been called. Has no effect if already paused.

Implementation

static Future<void> pause() async {
  TestFairyBase.prepareTwoWayInvoke();
  await TestFairyBase.channel.invokeMethod<void>('pause');
}