stopRecording static method

Future<bool> stopRecording()

Stop video recording

Implementation

static Future<bool> stopRecording() async {
  try {
    final bool result = await _channel.invokeMethod('stopRecording');
    return result;
  } catch (e) {
    ezvizLog('Error stopping recording: $e');
    return false;
  }
}