TileAtIndex constructor

const TileAtIndex({
  1. Key? key,
  2. required String index,
  3. required dynamic onRemoveMeTap(
    1. String index
    ),
})

Implementation

const TileAtIndex({
  super.key,
  required this.index,
  required this.onRemoveMeTap,
});