SSpreadsheetHitResult constructor

const SSpreadsheetHitResult({
  1. int? rowIndex,
  2. double rowProgress = 0.0,
  3. int? columnIndex,
  4. double columnProgress = 0.0,
  5. bool isInDataArea = false,
  6. int totalRows = 0,
  7. int totalColumns = 0,
  8. bool isFirstVisibleRow = false,
  9. bool isLastVisibleRow = false,
  10. bool canScrollUp = false,
  11. bool canScrollDown = false,
  12. bool isFirstVisibleColumn = false,
  13. bool isLastVisibleColumn = false,
  14. bool canScrollLeft = false,
  15. bool canScrollRight = false,
})

Implementation

const SSpreadsheetHitResult({
  this.rowIndex,
  this.rowProgress = 0.0,
  this.columnIndex,
  this.columnProgress = 0.0,
  this.isInDataArea = false,
  this.totalRows = 0,
  this.totalColumns = 0,
  this.isFirstVisibleRow = false,
  this.isLastVisibleRow = false,
  this.canScrollUp = false,
  this.canScrollDown = false,
  this.isFirstVisibleColumn = false,
  this.isLastVisibleColumn = false,
  this.canScrollLeft = false,
  this.canScrollRight = false,
});