UserAgentMetadata constructor

UserAgentMetadata({
  1. List<UserAgentBrandVersion>? brands,
  2. List<UserAgentBrandVersion>? fullVersionList,
  3. required String platform,
  4. required String platformVersion,
  5. required String architecture,
  6. required String model,
  7. required bool mobile,
  8. String? bitness,
  9. bool? wow64,
})

Implementation

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