rebuild method

void rebuild()

Rebuilds the widget.

Only rebuilds if the widget is mounted.

Implementation

void rebuild() {
  // ignore: invalid_use_of_protected_member
  if (mounted) setState(() {});
}