getCausesApiPath function
Implementation
Uri getCausesApiPath(String path, {Map<String, dynamic>? stringParams}) {
// return Uri.http(LOCAL_CAUSES_API_URL, "/api/" + path, stringParams);
return Uri.https(CAUSES_API_URL, "/api/" + path, stringParams);
}