DoHQuestion constructor

const DoHQuestion({
  1. String name = '',
  2. int type = 0,
  3. int dnsClass = 1,
})

Create DNS question instance

Implementation

const DoHQuestion({
  this.name = '',
  this.type = 0,
  this.dnsClass = 1, // Default to Internet class
});