isIOSWeb function

bool isIOSWeb([
  1. PlatformDetector? detector
])
  • isIOSWeb : true if the current platform is Web on iOS.

Implementation

bool isIOSWeb([PlatformDetector? detector]) =>
    (detector?.name ?? PlatformDetector.platform.name) == PlatformName.web_iOS;