buildWidget method
Implementation
@override
Widget buildWidget(BuildContext context) {
return XDataTable<T>(
items: itemList,
delegate: this,
sorter: tableSorter,
selector: tableSelector,
onRowLongPress: onLongPressRow,
onRowSecondaryTap: onSecondaryTapRow,
onRowDoubleTap: onDoubleTapRow,
).carded().fillOrScrollX(width: tableWidth).verScrollBar();
}