build<T> static method

Widget build<T>(
  1. String name, {
  2. required BuildContext context,
  3. required FormMapper mapper,
  4. required String path,
  5. 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);
}