GListTile constructor

const GListTile({
  1. Key? key,
  2. required IconData icon,
  3. required String title,
  4. String label = '',
  5. void onTap()?,
})

Implementation

const GListTile({
  super.key,
  required this.icon,
  required this.title,
  this.label = '',
  this.onTap,
});