update method
void
update(
- void fn(
- T? value
Implementation
void update(void Function(T? value) fn) {
fn(value);
refresh();
}
void update(void Function(T? value) fn) {
fn(value);
refresh();
}