custom static method

JetProperty custom(
  1. String key,
  2. Object value, [
  3. String? description
])

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