isRecording static method
Get recording status
Implementation
static Future<bool> isRecording() async {
try {
final bool result = await _channel.invokeMethod('isRecording');
return result;
} catch (e) {
ezvizLog('Error getting recording status: $e');
return false;
}
}