isIOSSafariWeb top-level property

bool get isIOSSafariWeb

Implementation

bool get isIOSSafariWeb {
  final userAgent = web.window.navigator.userAgent;
  final isIOS = RegExp(r'iPad|iPhone|iPod').hasMatch(userAgent);

  return isIOS && isSafariWeb;
}