findControlKind static method

AFUIControlSettings? findControlKind(
  1. String uiName
)

Implementation

static AFUIControlSettings? findControlKind(String uiName) {
  for(final candidateControlKind in controlKinds) {
    if(candidateControlKind.matchesName(uiName)) {
      return candidateControlKind;
    }
  }
  return null;
}