CellEditorBuilder typedef

CellEditorBuilder = Widget Function(BuildContext context, dynamic value, ValueChanged onChanged)

Builder function for custom cell editor widgets.

Implementation

typedef CellEditorBuilder =
    Widget Function(
      BuildContext context,
      dynamic value,
      ValueChanged<dynamic> onChanged,
    );