getValue method
Gets the string display value for an item.
Implementation
String getValue(T item) {
return this.map?.call(item)?.toString() ?? '';
}
Gets the string display value for an item.
String getValue(T item) {
return this.map?.call(item)?.toString() ?? '';
}