ValueType constructor

const ValueType({
  1. required DataType type,
  2. Map<String, dynamic>? additionalProperties,
})

Creates a new ValueType

Implementation

const ValueType({
  required this.type,
  this.additionalProperties,
});