LexPrimitiveArray constructor

  1. @JsonSerializable(includeIfNull: false)
const LexPrimitiveArray({
  1. @Default('array') String type,
  2. String? description,
  3. @lexPrimitiveConverter required LexPrimitive items,
  4. int? minLength,
  5. int? maxLength,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory LexPrimitiveArray({
  @Default('array') String type,
  String? description,
  @lexPrimitiveConverter required LexPrimitive items,
  int? minLength,
  int? maxLength,
}) = _LexPrimitiveArray;