isMethodSupported method

bool isMethodSupported(
  1. PlatformWebNotificationControllerMethod method, {
  2. TargetPlatform? platform,
})

Check if the given method is supported by the defaultTargetPlatform or a specific platform.

Implementation

bool isMethodSupported(
  PlatformWebNotificationControllerMethod method, {
  TargetPlatform? platform,
}) => _PlatformWebNotificationControllerMethodSupported.isMethodSupported(
  method,
  platform: platform,
);