imageUrl property
image source. If presented.
Example:
// Get category image URL
String? imageUrl = category.getImageUrl();
if (imageUrl != null) {
print('Category image URL: $imageUrl');
}
Implementation
String? imageUrl;
image source. If presented.
Example:
// Get category image URL
String? imageUrl = category.getImageUrl();
if (imageUrl != null) {
print('Category image URL: $imageUrl');
}
String? imageUrl;