UserAgent constructor

const UserAgent({
  1. String? name,
  2. String? version,
  3. String? system,
  4. String? url,
  5. String? comment,
})

Implementation

const UserAgent({
  this.name,
  this.version,
  this.system,
  this.url,
  this.comment,
});