findApplicator method

AFApplyWidgetAction? findApplicator(
  1. String actionType,
  2. Element elem
)

Implementation

AFApplyWidgetAction? findApplicator(String actionType, Element elem) {
  for(final apply in AFibF.g.sharedTestContext.applicators) {
    if(apply.matches(actionType, elem)) {
      return apply;
    }
  }
  return null;
}