delayShowingContent method
void
delayShowingContent()
Implementation
void delayShowingContent(){
Future.delayed(Duration(seconds: 3), () {
setState(() {
finishLoading = true;
});
});
}
void delayShowingContent(){
Future.delayed(Duration(seconds: 3), () {
setState(() {
finishLoading = true;
});
});
}