isIOS function

bool isIOS([
  1. PlatformDetector? detector
])
  • isIOS : true if the current platform OS category is iOS (It does not matter if it is a web or an application).

Implementation

bool isIOS([PlatformDetector? detector]) =>
    (detector?.name.category ?? PlatformDetector.platform.name.category) ==
    PlatformCategory.iOS;