listFromJson static method

List<NewRecurrence> listFromJson(
  1. dynamic json
)

Implementation

static List<NewRecurrence> listFromJson(dynamic json) =>
    json.map(NewRecurrence.fromJson).toList();