DictionaryField constructor

const DictionaryField({
  1. required String key,
  2. required DictionaryValue value,
  3. String? label,
  4. String? changeMessage,
  5. PassTextAlign? textAlignment,
  6. DictionaryValue? attributedValue,
})

Implementation

const DictionaryField({
  required this.key,
  required this.value,
  this.label,
  this.changeMessage,
  this.textAlignment,
  this.attributedValue,
});