openCamera method

Future<CameraResult?> openCamera(
  1. CameraSettings settings, {
  2. String? video,
  3. Map<String, dynamic>? metadata,
})

Opens the camera for recording or reaction mode.

settings - Configuration settings for the camera. video - Optional video input to trigger reactions (iOS only). metadata - Optional metadata to pass to the native module.

Implementation

Future<CameraResult?> openCamera(
  CameraSettings settings, {
  String? video,
  Map<String, dynamic>? metadata,
}) {
  throw UnimplementedError('openCamera() has not been implemented.');
}