findProp method
Finds a codePoint or return null if not found
Implementation
DeriveCodePropsItem? findProp(String property, int target) {
final props = _derivedProps[property];
if (props == null) return null;
return findIn(props, target);
}
Finds a codePoint or return null if not found
DeriveCodePropsItem? findProp(String property, int target) {
final props = _derivedProps[property];
if (props == null) return null;
return findIn(props, target);
}