MyTableAction<T> constructor

const MyTableAction<T>({
  1. required String tooltip,
  2. required IconData icon,
  3. Color? color,
  4. bool disabled(
    1. T data
    )?,
  5. void onTap(
    1. T data
    )?,
})

Implementation

const MyTableAction({
  required this.tooltip,
  required this.icon,
  this.color,
  this.disabled,
  this.onTap,
});