RecupListTile constructor

const RecupListTile({
  1. Key? key,
  2. required String title,
  3. IconData? leading,
  4. IconData? trailing,
  5. void onTap()?,
  6. bool divider = true,
})

Implementation

const RecupListTile({
  Key? key,
  required this.title,
  this.leading,
  this.trailing,
  this.onTap,
  this.divider = true,
}) : super(key: key);