createVideoCaptureOutput method
Create an instance of VideoCaptureOutput.
A platform implementation of PenguinCameraPlatform should implement a class of VideoCaptureOutput and return it here.
Implementation
@override
VideoCaptureOutput createVideoCaptureOutput({bool includeAudio = false}) {
return VideoCaptureOutput(includeAudio: includeAudio);
}