isSupported property

bool get isSupported

Whether the browser exposes the Notification API.

package:web has no equivalent of dart:html's Notification.supported; feature-detect the global instead.

Implementation

bool get isSupported => web.window.has('Notification');