appIconMaskUrl property

String? get appIconMaskUrl

A URL to the app icon mask. URLs have the same restrictions as $(ref:notifications.NotificationOptions.iconUrl iconUrl).

The app icon mask should be in alpha channel, as only the alpha channel of the image will be considered.

Implementation

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

Implementation

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