ResourceRecord constructor

ResourceRecord({
  1. String? name,
  2. String? type,
  3. String? value,
})

Implementation

ResourceRecord({
  this.name,
  this.type,
  this.value,
});