Navigator.internal constructor
Navigator.internal({
- required Window internalWindow,
- num? deviceMemory,
- String appCodeName = '',
- String appName = 'Netscape',
- String appVersion = '5.0',
- String platform = 'Win32',
- String product = 'Gecko',
- String? productSub = '20030107',
- bool? cookieEnabled,
- List<
String> languages = const <String>[], - bool? onLine,
- String userAgent = '-',
- String vendor = '-',
- String vendorSub = '',
- String? doNotTrack,
- int? maxTouchPoints,
Internal constructor. NOT part of "dart:html".
Implementation
Navigator.internal({
required this.internalWindow,
this.deviceMemory,
this.appCodeName = '',
this.appName = 'Netscape',
this.appVersion = '5.0',
this.platform = 'Win32',
this.product = 'Gecko',
this.productSub = '20030107',
bool? cookieEnabled,
List<String> languages = const <String>[],
bool? onLine,
String userAgent = '-',
String vendor = '-',
String vendorSub = '',
String? doNotTrack,
int? maxTouchPoints,
}) : _cookieEnabled = cookieEnabled,
_languages = languages,
_onLine = onLine,
_userAgent = userAgent,
_vendor = vendor,
_vendorSub = vendorSub,
_doNotTrack = doNotTrack,
_maxTouchPoints = maxTouchPoints,
super._();