TimeRange

data class TimeRange(val start: Date, val end: Date)

A type that represents a time range.

Constructors

Link copied to clipboard
constructor(start: Date, end: Date)

Properties

Link copied to clipboard
val end: Date

The end of the time range.

Link copied to clipboard
val start: Date

The start of the time range.