rebuild method
Rebuilds the widget.
Only rebuilds if the widget is mounted.
Implementation
void rebuild() {
// ignore: invalid_use_of_protected_member
if (mounted) setState(() {});
}
Rebuilds the widget.
Only rebuilds if the widget is mounted.
void rebuild() {
// ignore: invalid_use_of_protected_member
if (mounted) setState(() {});
}