fetchCountries method

Future<ShopifyCountries?> fetchCountries()

Implementation

Future<ShopifyCountries?> fetchCountries() async {
  try {
    Response response = await this.client.get("/countries");
    return ShopifyCountries.fromJson(response.data);
  } on Exception catch (e) {
    logResponse(e.toString());
  }
  return null;
}