TileWithoutIcon constructor

const TileWithoutIcon({
  1. Key? key,
  2. required String text,
  3. required dynamic onTapped(),
})

Implementation

const TileWithoutIcon({Key? key, required this.text, required this.onTapped})
    : super(key: key);