static Future<bool> stopScreenCapture() async { try { final result = await _channel.invokeMethod('stopScreenCapture'); return result as bool; } catch (e) { return false; } }