SRVRecord constructor

SRVRecord({
  1. num? priority,
  2. num? weight,
  3. num? port,
  4. String? target,
})

Implementation

factory SRVRecord({
  _i2.num? priority,
  _i2.num? weight,
  _i2.num? port,
  _i2.String? target,
}) =>
    SRVRecord._(
      priority: priority,
      weight: weight,
      port: port,
      target: target,
    );