Resource constructor

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

Implementation

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