fromJson static method

PlayerList fromJson(
  1. dynamic wrapped
)
override

Implementation

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