String standardizeImageUrl(String url) { if (url.contains('base64')) { return url.split(',')[1]; } return url; }