recurrence property

  1. @override
IRecurrence? recurrence
override

Property getter and setter for recurrence:

Implementation

@override
IRecurrence? get recurrence => _recurrence;
  1. @override
void recurrence=(IRecurrence? recurrence)
override

Implementation

@override
set recurrence(IRecurrence? recurrence) {
  this._recurrence = recurrence;
  wrapped['recurrence'] = jsonLiteral(recurrence);
}