SelectableViewCell constructor

SelectableViewCell({
  1. required Widget child,
  2. required bool selected,
  3. IconData? selectedIcon,
  4. Color? iconColor,
  5. void onTap()?,
})

Implementation

SelectableViewCell({
  required this.child,
  required this.selected,
  this.selectedIcon,
  this.iconColor,
  this.onTap,
});