find method

AbstractControl? find(
  1. String? path
)

Walks the path supplied to find matching control.

Uses / as a deliminator.

If no match is found, returns null.

Implementation

AbstractControl? find(String? path) => findPath(path?.split('/'));