RegistryAccessor.value constructor

RegistryAccessor.value({
  1. required String name,
  2. required String? valueType,
  3. String? description,
  4. List<String>? choices,
  5. String? defaultValue,
  6. String? pattern,
})

Implementation

new value({
  required this.name,
  required this.valueType,
  this.description,
  this.choices,
  this.defaultValue,
  this.pattern,
}) : kind = 'value',
     hidden = null,
     options = null;