DataTableRowOption<T> constructor

const DataTableRowOption<T>({
  1. EdgeInsets? paddingOfRowItem,
  2. double? heightOfRowItem,
  3. dynamic onPressRowItem(
    1. T
    )?,
  4. bool bordered = false,
})

Implementation

const DataTableRowOption({
  this.paddingOfRowItem,
  this.heightOfRowItem,
  this.onPressRowItem,
  this.bordered = false,
});