getImage method

Future<void> getImage()

Takes a photo using the camera

Implementation

Future<void> getImage() async {
  final image = await _pickerService.takePhoto();
  _processSelectedImage(image);
}