setTime method

RxDateTime setTime({
  1. int hour = 0,
  2. int minute = 0,
  3. int second = 0,
  4. int millisecond = 0,
})

Implementation

RxDateTime setTime({
  int hour = 0,
  int minute = 0,
  int second = 0,
  int millisecond = 0,
}) {
  value = DateTime(
      value.year, value.month, value.day, hour, minute, second, millisecond);
  return this;
}