findFieldById method

AutoFieldWidget findFieldById(
  1. String id
)

Implementation

AutoFieldWidget findFieldById(String id) {
  return children.whereType<AutoFieldWidget>().firstWhere((e) => e.id == id);
}