ReportRange.single constructor

const ReportRange.single({
  1. required int rowIndex,
  2. required int columnIndex,
})

Implementation

const ReportRange.single({
  required this.rowIndex,
  required this.columnIndex,
})  : rowSpan = 1,
      colSpan = 1;