TypedListValueType<J, D> constructor Null safety

const TypedListValueType<J, D>(
  1. ValueType elementValueType,
  2. {required bool optional,
  3. List<D>? defaultValue}
)

Implementation

const TypedListValueType(
  this.elementValueType, {
  required super.optional,
  super.defaultValue,
});