fromJson static method

FamilyList fromJson(
  1. dynamic wrapped
)
override

Implementation

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