NicePropDescriptor constructor

const NicePropDescriptor({
  1. required String name,
  2. required String label,
  3. NicePropType type = NicePropType.string,
  4. List<String>? options,
  5. String? group,
  6. dynamic defaultValue,
})

Implementation

const NicePropDescriptor({
  required this.name,
  required this.label,
  this.type = NicePropType.string,
  this.options,
  this.group,
  this.defaultValue,
});