DynamicTableDataCell constructor
DynamicTableDataCell({})
Creates an object to hold the data for a cell in a DynamicTable.
The first argument is the data to show for the cell, and must not be null.
If the cell has no data, placeholder
text should be provided instead, and then the placeholder
argument should be set to true.
Implementation
DynamicTableDataCell({
required this.value,
this.placeholder = false,
this.showEditIcon = false,
this.onTap,
this.onLongPress,
this.onTapDown,
this.onDoubleTap,
this.onTapCancel,
});