cel function
Get the CEL language support.
Example
final state = EditorState.create(EditorStateConfig(
doc: 'note.properties.title == "Hello"',
extensions: [cel()],
));
Implementation
LanguageSupport cel() {
return LanguageSupport(_celLanguage);
}