I have two stateful states, ABCState and XYZState, I want to call setState()
on ABCState from XYZState so that I can trigger a redraw of ABCState
class ABCState extends State<ABC> {
}
&
Class XYZState extends State<XYZ> {
// Call .setState() of ABCState
}
I tried to play around with keys, but somehow not able to do so. Appreciate your help