build method
Display the camera widget as soon as it is ready
Implementation
@override
Widget build(BuildContext context) {
return _controller == null ||
_controller?.value == null ||
_controller?.value.isInitialized == false
? Container()
: _cameraWidget();
}