inlineKeys property

Map<String, EasyAttribute<Object?>> inlineKeys
final

Registry of all inline attributes.

Inline attributes are applied to specific text ranges and include properties like bold, italic, color, and font size.

Implementation

static final Map<String, EasyAttribute> inlineKeys =
    UnmodifiableMapView<String, EasyAttribute>(
  <String, EasyAttribute<Object?>>{
    italic.key: italic,
    bold.key: bold,
    underline.key: underline,
    strike.key: strike,
    link.key: link,
    code.key: code,
    bg.key: bg,
    fontSize.key: fontSize,
    fontFamily.key: fontFamily,
    color.key: color,
    script.key: script,
  },
);