ConnectionProperties constructor

const ConnectionProperties({
  1. String os = 'Dart',
  2. String browser = 'Unspecified',
  3. String device = 'Unspecified',
})

Implementation

const ConnectionProperties({
  this.os = 'Dart',
  this.browser = 'Unspecified',
  this.device = 'Unspecified',
});