create static method

Implementation

static RecurrenceRuleProperty? create(Recurrence? value) {
  if (value == null) {
    return null;
  }

  return RecurrenceRuleProperty('$propertyName:$value');
}