Service constructor

Service({
  1. String? apiVersion,
  2. String? kind,
  3. ObjectMeta? metadata,
  4. ServiceSpec? spec,
  5. ServiceStatus? status,
})

Implementation

Service({
  this.apiVersion,
  this.kind,
  this.metadata,
  this.spec,
  this.status,
});