isMethodSupported method

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

Checks whether method is available on platform.

Implementation

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