PickerValueFormat<T> typedef

PickerValueFormat<T> = String Function(T value)

Callback function for formatting picker values to display strings.

This is used to customize how values are displayed in the picker.

Parameters:

  • value - The value to be formatted

Returns a formatted string representation of the value.

Implementation

typedef PickerValueFormat<T> = String Function(T value);