setState() It is used to notify the framework that “data has changed”, and the widget at this build context should be rebuilt .
Read moreHow do you call setState from a child’s widget?
You just need to add a field to child widget then in parent widget change value of that field and call setState() .
Read more