yState method
Implementation
void yState([VoidCallback? fn]) {
if (yIsAlive && mounted) {
try {
setState(() => fn?.call());
} catch (e) {}
}
}
void yState([VoidCallback? fn]) {
if (yIsAlive && mounted) {
try {
setState(() => fn?.call());
} catch (e) {}
}
}