Flutter : How To Convert Future<String> to String?
you can use then method and can convert Future to String.
appInfoApi.getLogoClient().then((String result){
setState(() {
urlImageApi = result;
});
});
you can use then method and can convert Future to String.
appInfoApi.getLogoClient().then((String result){
setState(() {
urlImageApi = result;
});
});