BrowserInfo constructor

  1. @JsonSerializable(includeIfNull: false)
const BrowserInfo({
  1. bool? java_enabled,
  2. bool? javascript_enabled,
  3. dynamic timezone_offset,
  4. dynamic screen_width,
  5. dynamic screen_height,
  6. dynamic color_depth,
  7. 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;