NsgTableRow constructor

const NsgTableRow({
  1. Key? key,
  2. bool slideEnable = false,
  3. double? rowFixedHeight,
  4. Color? backgroundColor,
  5. required List<Widget> tableRow,
  6. required NsgDataItem dataItem,
  7. required NsgDataController<NsgDataItem> controller,
  8. required List<NsgTableRowState> rowStateList,
  9. required dynamic rowStateCloseOthers(
    1. NsgTableRowState
    ),
})

Implementation

const NsgTableRow(
    {Key? key,
    this.slideEnable = false,
    this.rowFixedHeight,
    this.backgroundColor,
    required this.tableRow,
    required this.dataItem,
    required this.controller,
    required this.rowStateList,
    required this.rowStateCloseOthers})
    : super(key: key);