LiteralJsonSchemaProperty constructor

const LiteralJsonSchemaProperty({
  1. required LiteralJsonSchemaPropertyType type,
  2. String? description,
  3. String? dynamicVariable,
  4. dynamic constantValue,
})

Implementation

const LiteralJsonSchemaProperty({
  required this.type,
  this.description,
  this.dynamicVariable,
  this.constantValue,
});