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