findWidget method

WidgetProperty? findWidget(
  1. String path
)

Implementation

WidgetProperty? findWidget(String path) {
  var operation = findOperation(path);
  if ( operation != null)
    return operation.target as WidgetProperty;

  return null;
}