PlutoCompareFunction typedef

PlutoCompareFunction = bool Function({required String? base, required PlutoColumn column, required String? search})

base is the cell values of the column on which the search is based. search is the value entered by the user to search.

Implementation

typedef PlutoCompareFunction = bool Function({
  required String? base,
  required String? search,
  required PlutoColumn column,
});