TableRowAction<T> constructor

const TableRowAction<T>({
  1. required IconData icon,
  2. required void onPressed(
    1. T
    ),
  3. String? tooltip,
})

Implementation

const TableRowAction({
  required this.icon,
  required this.onPressed,
  this.tooltip,
});