BottomButtonWidget constructor

const BottomButtonWidget({
  1. Key? key,
  2. required Widget normalImage,
  3. required double imageSize,
  4. int markCount = 0,
  5. Widget? normalTitle,
  6. Widget? selectedTitle,
  7. Widget? selectedImage,
  8. VoidCallback? onPressed,
  9. bool isSelected = false,
  10. ValueNotifier<bool>? rotationNotifier,
  11. Duration delay = const Duration(milliseconds: 100),
})

Implementation

const BottomButtonWidget(
    {super.key,
    required this.normalImage,
    required this.imageSize,
    this.markCount = 0,
    this.normalTitle,
    this.selectedTitle,
    this.selectedImage,
    this.onPressed,
    this.isSelected = false,
    this.rotationNotifier,
    this.delay = const Duration(milliseconds: 100)});