build method

Widget build(
  1. BuildContext context
)

Implementation

Widget build(BuildContext context) {
  Widget rtn = const Text('hey');
  map.forEach((k, v) {
    if (k == "Form") {
      rtn = buildForm(v as Map, context);
    } else if (k == 'Expanded') {}
  });
  return rtn;
}