fieldAt method

Widget fieldAt(
  1. T value,
  2. int index
)

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