getFormattedValueByKey method
dynamic
getFormattedValueByKey(
- E key
Returns a formatted display value for key.
Override when a field has a display representation that differs from its
stored value (e.g. a DateTime formatted as a locale string). Return
null to fall back to getValueByKey via
getFormattedValueIfNotNullOtherwiseValue.
Implementation
dynamic getFormattedValueByKey(E key) {
return null;
}