initializeExercise method

void initializeExercise(
  1. double width,
  2. double height
)

Implementation

void initializeExercise(double width, double height) {
  breathingEngine.initialize(
    width: width,
    height: height,
  );

  _startAnimation();
}