FlowSchema constructor

const FlowSchema({
  1. String? apiVersion,
  2. String? kind,
  3. ObjectMeta? metadata,
  4. FlowSchemaSpec? spec,
  5. FlowSchemaStatus? status,
})

Default constructor.

Implementation

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