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