getValue method

String getValue(
  1. T item
)

Gets the string display value for an item.

Implementation

String getValue(T item) {
  return this.map?.call(item)?.toString() ?? '';
}