getFormattedValueIfNotNullOtherwiseValue method

dynamic getFormattedValueIfNotNullOtherwiseValue(
  1. E key
)

Implementation

getFormattedValueIfNotNullOtherwiseValue(E key) {
  return getFormattedValueByKey(key) ?? getValueByKey(key);
}