fromJson static method

Recurrence fromJson(
  1. dynamic wrapped
)
override

Implementation

static Recurrence fromJson(wrapped) => wrapped is Recurrence
    ? wrapped
    : Recurrence(wrapped as Map<String, dynamic>, update: true);