filterEmojiDefinitions function
Returns emoji based on given predicate
. Allows to cache results via cache
parameter.
Implementation
Stream<EmojiDefinition> filterEmojiDefinitions(bool Function(EmojiDefinition) predicate, {bool cache = false}) =>
getAllEmojiDefinitions(cache: cache).where(predicate);