fieldAt method
Implementation
Widget fieldAt(T value, int index) {
if (index < 0 || index >= factories.length) {
throw ArgumentError("No field with index $index");
}
return factories[index].buildView(structure.proxy.getFieldValues(value)[index]);
}