enterLoading method
void
enterLoading()
Implementation
void enterLoading() {
setState(() {
floating = true;
});
_enableLoading = false;
readyToLoad().then((_) {
if (!mounted) {
return;
}
mode = LoadStatus.loading;
});
}