build method

  1. @override
Text build({
  1. required BuildContext context,
  2. required FormMapper mapper,
  3. required TypeProperty property,
  4. required Keywords args,
})
override

build and bind the corresponding widget context a FormMapper mapper the FormMapper property a TypeProperty args and parameters that will be handled by the adapter

Implementation

@override
Text build({required BuildContext context, required FormMapper mapper, required TypeProperty property, required Keywords args}) {
  var initialValue = mapper.getValue(property);

  var widget = Text(initialValue, key: ValueKey("$name:${property.path}"));

  //mapper.map(property: property, widget: widget, adapter: this);

  return widget;
}