how add event to block from method callback not in build method in flutter code example
Example: Is there any callback to tell me when “build” function is done in Flutter?
build() is sync, so if you execute something async in build()
it will be executed after build() is done.