update method
void
update(
- T updates(
- T v
Implementation
void update(T Function(T v) updates) {
value = updates(read());
}
void update(T Function(T v) updates) {
value = updates(read());
}