getMatchDataResponse method

Future<Response> getMatchDataResponse(
  1. String matchId
)

Implementation

Future<http.Response> getMatchDataResponse(String matchId) async {
  final _unencodedPath = '/val/match/v1/matches/$matchId';
  final _uri = '$authority$_unencodedPath';
  var _response = await http.get(Uri.parse(_uri), headers: headers);
  return _response;
}