Flutter Null check operator not working well
I'm trying to call a widget when a form is validated. However, I'm running in a bit of problem here In my code final GlobalKey<FormState> formkey = GlobalKey<FormState>(); Then later formkey.currentState!.validate() ? const SizedBox()///this is not the actual widget but…