getScanlationGroupByIdResponse method

Future<Response> getScanlationGroupByIdResponse(
  1. String groupId
)
inherited

Endpoint used: GET /group/{id}

Returns an http response containing info of a Scanlation Group identified by it's groupId or UUID

Implementation

Future<http.Response> getScanlationGroupByIdResponse(String groupId) {
  var unencodedPath = '/group/$groupId';
  var uri = 'https://$AUTHORITY$unencodedPath';
  return http.get(Uri.parse(uri), headers: {
    HttpHeaders.contentTypeHeader: 'application/json',
  });
}