TableAction<T> constructor

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

Implementation

const TableAction({
  required this.child,
  required this.onTap,
  this.tooltip,
  this.enabledFor,
});