getImage method
Takes a photo using the camera
Implementation
Future<void> getImage() async {
final image = await _pickerService.takePhoto();
_processSelectedImage(image);
}
Takes a photo using the camera
Future<void> getImage() async {
final image = await _pickerService.takePhoto();
_processSelectedImage(image);
}