build<T> static method
Widget
build<T>(
- String name, {
- required BuildContext context,
- required FormMapper mapper,
- required String path,
- Keywords? args,
Implementation
static Widget build<T>(String name, {required BuildContext context, required FormMapper mapper, required String path, Keywords? args}) {
var property = mapper.computeProperty(mapper.type, path);
return getAdapter(name).build(context: context, mapper: mapper, property: property, args: args ?? Keywords.empty);
}