TableAction<T> constructor

TableAction<T>({
  1. required String title,
  2. required dynamic action(
    1. T
    ),
  3. required IconData icon,
  4. Color? bgColor,
  5. Color? iconColor,
})

Implementation

TableAction({
  required this.title,
  required this.action,
  required this.icon,
  this.bgColor,
  this.iconColor,
});