GridRange constructor

GridRange({
  1. int? endColumnIndex,
  2. int? endRowIndex,
  3. int? sheetId,
  4. int? startColumnIndex,
  5. int? startRowIndex,
})

Implementation

GridRange({
  this.endColumnIndex,
  this.endRowIndex,
  this.sheetId,
  this.startColumnIndex,
  this.startRowIndex,
});