startRecording static method

Future<bool> startRecording()

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;
  }
}