FXItemPickerCell constructor

const FXItemPickerCell({
  1. Key? key,
  2. required String title,
  3. required bool isSelected,
  4. Color? selectedColor,
})

Implementation

const FXItemPickerCell({
  Key? key,
  required this.title,
  required this.isSelected,
  this.selectedColor,
}) : super(key: key);