ExpandedGridContent constructor

ExpandedGridContent({
  1. Key? key,
  2. int columnIndex = 0,
  3. int rowIndex = 0,
  4. int columnSpan = 1,
  5. int rowSpan = 1,
  6. required Widget child,
})

Implementation

ExpandedGridContent({
  Key? key,
  this.columnIndex = 0,
  this.rowIndex = 0,
  this.columnSpan = 1,
  this.rowSpan = 1,
  required this.child
}):super(key: key);