Resource constructor

Resource({
  1. Map<String, String>? labels,
  2. String? name,
  3. String? service,
  4. String? type,
})

Implementation

Resource({
  this.labels,
  this.name,
  this.service,
  this.type,
});