FormattedObjectInput<T> constructor

const FormattedObjectInput<T>({
  1. Key? key,
  2. T? initialValue,
  3. ValueChanged<T?>? onChanged,
  4. FormattedInputPopupBuilder<T>? popupBuilder,
  5. bool enabled = true,
  6. ComponentController<T?>? controller,
  7. required BiDirectionalConvert<T?, List<String?>> converter,
  8. required List<InputPart> parts,
  9. AlignmentGeometry? popoverAlignment,
  10. AlignmentGeometry? popoverAnchorAlignment,
  11. Offset? popoverOffset,
  12. Widget? popoverIcon,
  13. ValueChanged<List<String>>? onPartsChanged,
})

Implementation

const FormattedObjectInput({
  super.key,
  this.initialValue,
  this.onChanged,
  this.popupBuilder,
  this.enabled = true,
  this.controller,
  required this.converter,
  required this.parts,
  this.popoverAlignment,
  this.popoverAnchorAlignment,
  this.popoverOffset,
  this.popoverIcon,
  this.onPartsChanged,
});