PropMeta constructor

const PropMeta({
  1. required String name,
  2. required String type,
  3. bool isRequired = false,
  4. String? defaultValue,
  5. LocalizedText? description,
  6. List<String> enumValues = const <String>[],
})

Creates a PropMeta.

Implementation

const PropMeta({
  required this.name,
  required this.type,
  this.isRequired = false,
  this.defaultValue,
  this.description,
  this.enumValues = const <String>[],
});