render method

Widget render({
  1. String name = "default",
})

Render the form to the UI Primary method to implement in you Widget tree.

Implementation

Widget render({String name = "default"}) {
  return FormStackView(_forms[name]!);
}