RuntimeClass constructor

const RuntimeClass({
  1. String? apiVersion,
  2. required String handler,
  3. String? kind,
  4. ObjectMeta? metadata,
  5. Overhead? overhead,
  6. Scheduling? scheduling,
})

Default constructor.

Implementation

const RuntimeClass({
  this.apiVersion,
  required this.handler,
  this.kind,
  this.metadata,
  this.overhead,
  this.scheduling,
});