second method

dynamic second([
  1. int? second
])

Gets or sets the second of this Day.

When setting a new second, it will return a new Day instance with the new second.

Implementation

dynamic second([int? second]) {
  if (second == null) {
    return _values[Unit.s];
  } else {
    return _cloneAndSetSingleValue(Unit.s, second);
  }
}