setDate method

void setDate(
  1. int date
)

Sets the date, it won't update the internal _time.

You must call finished method to apply all changes. Usually used in chain setting (Cascade).

Implementation

void setDate(int date) => _values[Unit.d] = date;