TableScroll constructor

const TableScroll({
  1. Key? key,
  2. required List<TableTransactionItem> transaction,
  3. required bool isFull,
})

Implementation

const TableScroll({Key? key, required this.transaction, required this.isFull})
    : super(key: key);