initialize method
Initializes the camera on the device.
Throws a CameraException if the initialization fails.
Implementation
@override
Future<void> initialize({
bool initializeProccessImage = true,
}) async {
await super.initialize();
if (!initializeProccessImage) {
return;
}
await startImageStream(_processCameraImage);
}