supportsPushNotifications method

bool supportsPushNotifications()

Implementation

bool supportsPushNotifications() {
  if (kIsWeb) {
    return [
      'SAFARI ON MACOS',
      'SAFARI ON IOS',
      'CHROME ON MACOS',
      'CHROME ON WINDOWS',
      'CHROME ON ANDROID',
    ].contains(this.name);
  }
  return true;
}