fromJson static method

BirthdayList fromJson(
  1. dynamic wrapped
)
override

Implementation

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