imageUrl property

String? imageUrl
getter/setter pair

image source. If presented.

Example:

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

Implementation

String? imageUrl;