fromJson static method

TeamList fromJson(
  1. dynamic wrapped
)
override

Implementation

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