findProp method

DeriveCodePropsItem? findProp(
  1. String property,
  2. int target
)

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);
}