initialize static method
void
initialize()
Initialize mobile web detection
Implementation
static void initialize() {
if (_initialized) return;
if (kIsWeb) {
// Detect mobile web browsers
_isMobileWeb = _detectMobileWeb();
}
_initialized = true;
}