TileWithIcon constructor

const TileWithIcon({
  1. Key? key,
  2. required IconData leadingIcon,
  3. required String text,
  4. required dynamic onTapped(),
})

Implementation

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