exclusives property

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

Registry of exclusive attributes that cannot be combined.

Applying any of these attributes will automatically remove any other exclusive attributes from the same text range.

Implementation

static final Map<String, EasyAttribute> exclusives =
    UnmodifiableMapView<String, EasyAttribute>(
  <String, EasyAttribute<Object?>>{
    header.key: header,
    codeblock.key: codeblock,
    blockquote.key: blockquote,
    list.key: list,
  },
);