toggleValue method
Implementation
void toggleValue([bool? value]) {
if (mounted) {
boolNotifier.value = value ?? !boolNotifier.value;
}
}
void toggleValue([bool? value]) {
if (mounted) {
boolNotifier.value = value ?? !boolNotifier.value;
}
}