class _TopContainerState extends State<TopContainer> {
_TopContainerState(){
print("foo");
} : super();
}
The reason why I'm defining a constructor is because some of my field's constructors require
passing them an instance event handler method, which aparently I cannot do on class initialization, only in the constructor.
Thank you!
Leo