pause method

Future<bool?> pause()

Implementation

Future<bool?> pause() async {
  return await _channel.invokeMethod(
    'pause',
  );
}