getMatchlist method

Future<MatchList?> getMatchlist(
  1. String puuid
)

Implementation

Future<MatchList?> getMatchlist(String puuid) async {
  var _response = await getMatchlistResponse(puuid);
  if (_response.statusCode == 200) {
    return MatchList.fromJson(jsonDecode(_response.body));
  } else {
    print(_response.body);
  }
}