createVideoCaptureOutput method Null safety

VideoCaptureOutput createVideoCaptureOutput(
  1. {bool includeAudio = false}
)

Create an instance of VideoCaptureOutput.

A platform implementation of PenguinCameraPlatform should implement a class of VideoCaptureOutput and return it here.

Implementation

VideoCaptureOutput createVideoCaptureOutput({bool includeAudio = false}) {
  throw UnimplementedError();
}