initState method
Implementation
@protected
Future<void> initState(BuildContext context) async {
if (actions["onEnter"] != null) {
var func =
Lowder.actions.getFunction(context, actions["onEnter"], state, null);
if (func != null) {
func();
}
}
}