addCustomState method
void
addCustomState(
- S _state
add _state
to customState and rebuild
Implementation
void addCustomState(S _state) {
if (customState.add(_state)) {
setState(() {});
}
}
add _state
to customState and rebuild
void addCustomState(S _state) {
if (customState.add(_state)) {
setState(() {});
}
}