getRecurrenceRuleText static method
[String] getRecurrenceRuleText(
- [[String] frequency, ]
- [[Set[<[String]>]?] weekDays, ]
- [[int?] interval, ]
- [[int?] count, ]
- [[int?] weekDayOccurenceInMonth, ]
- [[DateTime] startDate, ]
- [[DateTime?] endDate, ]
)
'getRecurrenceRuleText' return text for various recurrence rules.
params:
frequency: Frequency of the event.weekDays: List of week days.interval: Interval of the event.count: Count of the event.weekDayOccurenceInMonth: Week day occurence in month.startDate: Start date of the event.endDate: End date of the event.
returns:
String: Recurrence rule text.
Implementation
static String getRecurrenceRuleText(
String frequency,
Set<String>? weekDays,
int? interval,
int? count,
int? weekDayOccurenceInMonth,
DateTime startDate,
DateTime? endDate,
)
- talawa
- recurrence_values
- RecurrenceUtils
- getRecurrenceRuleText static method