ExercisesButton constructor

const ExercisesButton(
  1. {Key? key,
  2. void onPressed(
      )?,
    1. required ChapterInfo chapterInfo}
    )

    Implementation

    const ExercisesButton({
      super.key,
      this.onPressed,
      required this.chapterInfo,
    });