static Future<bool> stopRecording() async { if (kIsWeb) { return false; } final bool? status = await _channel .invokeMethod<bool>(Constants.caseStopSessionRecording); return status!; }