getStoreFront method

Future getStoreFront()

Implementation

Future<dynamic> getStoreFront() async {
  var res = await client.send(
    method: "GET",
    url: "${Endpoints().fortniteCatalog}",
  );

  return res;
}