notify method

void notify()

Updating the view

Implementation

void notify() {
  if (mounted) {
    setState(() {});
  }
}