startRecording static method
Start video recording
Implementation
static Future<bool> startRecording() async {
try {
final bool result = await _channel.invokeMethod('startRecording');
return result;
} catch (e) {
ezvizLog('Error starting recording: $e');
return false;
}
}