isBrowserIOS static method

bool isBrowserIOS()

Implementation

static bool isBrowserIOS() {
  bool isWeb = DeviceTools.isPlatformWeb();
  bool isIOS = DeviceTools.isIOS();
  return isWeb && isIOS;
}