fetchProfilesList function
Implementation
Future<Map> fetchProfilesList(String basePath) async{
final profileListFileName = 'profilesList.json';
final profilesList = await fetchJsonFile('$basePath/$profileListFileName');
return profilesList;
}