RawCell constructor

const RawCell({
  1. Key? key,
  2. required int column,
  3. required int row,
  4. int? columnSpan,
  5. int? rowSpan,
  6. bool computeSize = true,
  7. required Widget child,
})

Implementation

const RawCell({
  Key? key,
  required this.column,
  required this.row,
  this.columnSpan,
  this.rowSpan,
  this.computeSize = true,
  required Widget child,
}) : super(key: key, child: child);