onChangePhotoTapped method

Future<void> onChangePhotoTapped({
  1. bool camera = false,
})

Implementation

Future<void> onChangePhotoTapped({bool camera = false}) async {
  image.value = await ImageUtil.getImageFromPhone(camera: camera);
}