ScheduleDetails constructor

ScheduleDetails(
  1. String start,
  2. String duration,
  3. String recurrence
)

Creates a new instance.

  • start Specifies when the iCalendar component begins, for example "T000000" (starts at midnight).
  • duration Specifies a positive duration of time for the iCalendar component, for example "PT24H00M" (lasts 24h).
  • recurrence The recurrence information for a iCalendar component, for example "FREQ:DAILY;BYDAY:MO,TU,WE,TH,FR,SA".

Implementation

ScheduleDetails(this.start, this.duration, this.recurrence);