iconUrl property

String? get iconUrl

A URL to the sender's avatar, app icon, or a thumbnail for image notifications.

URLs can be a data URL, a blob URL, or a URL relative to a resource within this extension's .crx file Required for notifications.create method.

Implementation

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

Implementation

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