run function on start of screen flutter code example
Example: flutter how to execute function after building screen
QUESTIONS: Flutter: Run method on Widget build complete
ANSWERS:
1) WidgetsBinding.instance.addPostFrameCallback((_) => yourFunc(context)); //Recomended
2) Future.delayed(Duration.zero, () => yourFunc(context));
3) Timer.run(() => yourFunc(context));