findProp method
Finds the range carrying property that covers target, or null.
Implementation
EmojiDataItem? findProp(String property, int target) {
final items = _properties[property];
if (items == null) return null;
return findIn(items, target);
}