DictionaryField constructor

const DictionaryField({
  1. required String key,
  2. required DictionaryValue value,
  3. DictionaryValue? attributedValue,
  4. String? label,
  5. String? changeMessage,
  6. PassTextAlign? textAlignment,
  7. PassTextNumberStyle? numberStyle,
  8. String? currencyCode,
  9. PassTextDateStyle? dateStyle,
  10. PassTextDateStyle? timeStyle,
  11. bool ignoresTimeZone = false,
})

Implementation

const DictionaryField({
  required this.key,
  required this.value,
  this.attributedValue,
  this.label,
  this.changeMessage,
  this.textAlignment,
  this.numberStyle,
  this.currencyCode,
  this.dateStyle,
  this.timeStyle,
  this.ignoresTimeZone = false,
});