WeekRange

data class WeekRange(val start: Int, val end: Int, val step: Int? = null) : WeeksSelector(source)

Within a range of weeks (start-end) with an optional interval of step weeks. E.g. from week 12 to week 40 but only every second week

Constructors

Link copied to clipboard
constructor(start: Int, end: Int, step: Int? = null)

Properties

Link copied to clipboard
val end: Int
Link copied to clipboard
val start: Int
Link copied to clipboard
val step: Int?

Functions

Link copied to clipboard
open override fun toString(): String