ItemTile constructor

const ItemTile({
  1. Key? key,
  2. required String title,
  3. String? description,
  4. dynamic onTap()?,
})

Implementation

const ItemTile({
  super.key,
  required this.title,
  this.description,
  this.onTap,
});