custom static method
Creates a user-defined custom property.
Example:
final JetProperty myProp = JetProperty.custom("custom.prop", "hello");
Implementation
static JetProperty custom(String key, Object value, [String? description]) => _(key, value, description);