ServiceEntry constructor

const ServiceEntry({
  1. String? apiVersion,
  2. String? kind,
  3. ObjectMeta? metadata,
  4. ServiceEntrySpec? spec,
  5. ServiceEntryStatus? status,
})

The main constructor.

Implementation

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