buildForm method
Implementation
Form buildForm(Map props, BuildContext context) {
if (props['items'] == null) {
throw Exception('Form must have items property');
}
List<Widget> childWidgets = buildChildWidgets(props['items'] as List);
return Form(child: Column(children: childWidgets));
}