Improvements

This commit is contained in:
Juan Gilsanz Polo
2024-02-23 01:47:38 +01:00
parent b6d80d7473
commit 25d0e230c6
5 changed files with 29 additions and 63 deletions

View File

@@ -8,9 +8,4 @@ class OnboardingModel {
required this.pageController,
this.confirmServerRunning = false,
});
OnboardingModel toggleConfirmServerRunning(bool newValue) => OnboardingModel(
pageController: pageController,
confirmServerRunning: newValue,
);
}