BrowserInfo constructor
- @JsonSerializable(includeIfNull: false)
const
BrowserInfo(
{ - bool? java_enabled,
- bool? javascript_enabled,
- dynamic timezone_offset,
- dynamic screen_width,
- dynamic screen_height,
- dynamic color_depth,
- String? language,
})
Implementation
@JsonSerializable(includeIfNull: false)
const factory BrowserInfo({
bool? java_enabled,
bool? javascript_enabled,
dynamic timezone_offset, // number | string
dynamic screen_width, // number | string
dynamic screen_height, // number | string
dynamic color_depth, // number | string
String? language,
}) = _BrowserInfo;