FlickerGrid constructor

const FlickerGrid({
  1. Key? key,
  2. List<DataColumn> columns = const [],
  3. List<DataRow> rows = const [],
  4. DataRow? footerRow,
  5. double horizontalMargin = 0,
  6. MaterialStateProperty<Color?>? headingRowColor,
  7. int? sortColumnIndex,
  8. bool sortAscending = true,
  9. bool showCheckboxColumn = false,
})

Implementation

const FlickerGrid({
  Key? key,
  this.columns = const [],
  this.rows = const [],
  this.footerRow,
  this.horizontalMargin = 0,
  this.headingRowColor,
  this.sortColumnIndex,
  this.sortAscending = true,
  this.showCheckboxColumn = false,
}) : super(key: key);