bind method

Widget bind(
  1. String name, {
  2. required String path,
  3. required BuildContext context,
  4. Keywords? args,
})

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);
}