TableAction<T extends Object> constructor
TableAction<T extends Object> ({})
Implementation
TableAction({
required this.content,
required void Function(T) onTap,
this.inline = false,
this.label,
this.icon,
this.color,
this.backgroundColor,
}) : _onTapInternal = ((item) => onTap(item as T));