fromJson static method

PetList fromJson(
  1. dynamic wrapped
)
override

Implementation

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