decodeList static method

Iterable<Player> decodeList(
  1. List list
)

Implementation

static Iterable<Player> decodeList(List<dynamic> list) =>
    list.map((dynamic e) => Player.fromJson(e));