RefProperty constructor

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

Implementation

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