My flutter app uses different classes and needs to refresh and rebuild items, but the refresh is only called in initState, so it only refreshes at the start. Is there an overrideable function?
@override
void initState() {
super.initState();
refresh();
}
void refresh() {
question = new Question(_raw);
}