setState method
void
setState(
- void fn()
Implementation
void setState(void Function() fn) {
try {
fn();
} finally {
notifyListeners();
}
}
void setState(void Function() fn) {
try {
fn();
} finally {
notifyListeners();
}
}