bySecond property

List<int>? bySecond

Implementation

List<int>? get bySecond => _bySecond;
void bySecond=(List<int>? bySecond)

Implementation

set bySecond(List<int>? bySecond) {
  assert(bySecond == null ||
      (bySecond.isNotEmpty &&
          bySecond.every((element) => element > 0 && element <= 60)));
  _bySecond = bySecond;
}