bind method
bind a field to a form element
name
the element name
path
a field path
context
the BuildContext
args
any parameters that will be passed to the newly created element
Implementation
Widget bind(String name, {required String path, required BuildContext context, Keywords? args }) {
return ValuedWidget.build(name, context: context, mapper: this, path: path, args: args ?? Keywords.empty);
}