imageUrl property

String? get imageUrl

A URL to the image thumbnail for image-type notifications. URLs have the same restrictions as $(ref:notifications.NotificationOptions.iconUrl iconUrl).

Implementation

String? get imageUrl => _wrapped.imageUrl;
set imageUrl (String? v)

Implementation

set imageUrl(String? v) {
  _wrapped.imageUrl = v;
}