setShootingDateFromPhoto method
- {required XFile photo}
Implementation
Future<void> setShootingDateFromPhoto({
required XFile photo,
}) async {
final shootingDate =
await _getMealPhotoShootingDateUsecase.exec(photo: photo);
state = shootingDate;
}