toggleValue method

void toggleValue([
  1. bool? value
])

Implementation

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