decodeList static method

Iterable<Tournament> decodeList(
  1. List list
)

Implementation

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