isRecording method

Future<bool> isRecording()

You can get record status to check if screenrecord still active

Implementation

Future<bool> isRecording() {
  return _channel.invokeMethod("isRecording").then((value) => value ?? false);
}