updateShootingDate method

void updateShootingDate(
  1. {required DateTime selectedDate}
)

撮影日を更新する

Implementation

void updateShootingDate({
  required DateTime selectedDate,
}) {
  final newDateTime = _changeShootingDateUsecase.exec(
    newDateTime: selectedDate,
    oldDateTime: state,
  );
  state = newDateTime;
}