Tile constructor

Tile({
  1. required int row,
  2. required int column,
  3. int rowSpan = 1,
  4. int columnSpan = 1,
  5. Widget? child,
})

Implementation

Tile(
    {required this.row,
    required this.column,
    this.rowSpan = 1,
    this.columnSpan = 1,
    this.child});