ArrayProperty constructor

ArrayProperty({
  1. TProperty? items,
  2. String? ref,
  3. required bool nullable,
  4. TPropertyType type = TPropertyType.arrayProperty,
  5. required String? format,
  6. dynamic defaultValue,
  7. required List<String> enumValues,
})

Implementation

ArrayProperty({
  this.items,
  this.ref,
  required this.nullable,
  this.type = TPropertyType.arrayProperty,
  required this.format,
  this.defaultValue,
  required this.enumValues,
});