TableAction<T> constructor

const TableAction<T>({
  1. required Widget child,
  2. required dynamic onTap(
    1. T item
    ),
  3. String? tooltip,
  4. bool enabled = true,
})

Implementation

const TableAction({
  required this.child,
  required this.onTap,
  this.tooltip,
  this.enabled = true,
});