ProtocolEmulationUserAgentMetadata constructor

ProtocolEmulationUserAgentMetadata({
  1. List<ProtocolEmulationUserAgentBrandVersion>? brands,
  2. List<ProtocolEmulationUserAgentBrandVersion>? fullVersionList,
  3. String? fullVersion,
  4. required String platform,
  5. required String platformVersion,
  6. required String architecture,
  7. required String model,
  8. required bool mobile,
  9. String? bitness,
  10. bool? wow64,
  11. List<String>? formFactors,
})

Implementation

ProtocolEmulationUserAgentMetadata({
  this.brands,
  this.fullVersionList,
  this.fullVersion,
  required this.platform,
  required this.platformVersion,
  required this.architecture,
  required this.model,
  required this.mobile,
  this.bitness,
  this.wow64,
  this.formFactors,
});