PropertyInfo constructor

const PropertyInfo(
  1. String name,
  2. DartType type, {
  3. required bool isRequired,
  4. DartObject? defaultValue,
  5. String? description,
})

Implementation

const PropertyInfo(
  this.name,
  this.type, {
  required this.isRequired,
  this.defaultValue,
  this.description,
});