isBrowserMobile static method

bool isBrowserMobile()

open from safari or chrome from android or ios

Implementation

static bool isBrowserMobile() {
  bool isWeb = DeviceTools.isPlatformWeb();
  bool isMobile = DeviceTools.isMobile();
  return isWeb && isMobile;
}