FdcCellValueFormatter typedef

FdcCellValueFormatter = String Function(FdcGridColumn column, Object? value, {FdcColumnIdentity? runtimeColumnId})

Formats an arbitrary grid cell value for display text.

The grid calls this formatter from custom-cell rendering paths. The optional runtime column identity distinguishes repeated/runtime column instances when layout state requires it. Keep the formatter side-effect free.

Implementation

typedef FdcCellValueFormatter =
    String Function(
      FdcGridColumn<dynamic> column,
      Object? value, {
      FdcColumnIdentity? runtimeColumnId,
    });