postValue method
void
postValue(
- T? newValue
Implementation
void postValue(T? newValue) {
Future.microtask(() {
setValue(newValue);
});
}
void postValue(T? newValue) {
Future.microtask(() {
setValue(newValue);
});
}