decodeList static method

Iterable<Team> decodeList(
  1. List list
)

Implementation

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