formatValue method

String formatValue([
  1. T? value
])

Formats this column's current value using the grid formatter.

Implementation

String formatValue([T? value]) {
  return formatValueOf(column.fieldName, value ?? this.value);
}