From bf43476bec7afd8751556a68c683aa62a92a6efb Mon Sep 17 00:00:00 2001 From: Hayri Bakici Date: Thu, 4 May 2023 18:43:53 +0200 Subject: [PATCH] adds more comment --- lib/src/endpoints/markets.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/src/endpoints/markets.dart b/lib/src/endpoints/markets.dart index e9d8c0a..d2cfc6a 100644 --- a/lib/src/endpoints/markets.dart +++ b/lib/src/endpoints/markets.dart @@ -8,6 +8,8 @@ class Markets extends EndpointBase { Markets(SpotifyApiBase api) : super(api); /// Get the list of markets where Spotify is available. + /// A result of `null` means that the country is not mapped + /// in this library. Future> get availableMarkets async { var jsonString = await _api._get(_path); var map = json.decode(jsonString);