InMemoryTable constructor
const
InMemoryTable({
- Key? key,
- required List<
String> columns, - required List<
List< rows,String> > - double maxHeight = 420,
- bool autoSizeHorizontally = false,
- bool autoSizeVertically = false,
- bool autoSizeColumns = false,
- bool autoSizeRows = false,
- double? maxAutoSizeColumnExtent = 300,
- double? maxAutoSizeRowExtent = 300,
- bool showLeadingOuterBorders = false,
- bool showRowHeaders = true,
- ValueChanged<
Set< ? onSelectedRowsChanged,int> > - FutureOr<
void> onOpenFile(- String file
Implementation
const InMemoryTable({
super.key,
required this.columns,
required this.rows,
this.maxHeight = 420,
this.autoSizeHorizontally = false,
this.autoSizeVertically = false,
this.autoSizeColumns = false,
this.autoSizeRows = false,
this.maxAutoSizeColumnExtent = 300,
this.maxAutoSizeRowExtent = 300,
this.showLeadingOuterBorders = false,
this.showRowHeaders = true,
this.onSelectedRowsChanged,
this.onOpenFile,
});