blocks property

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

Registry of all block-level attributes.

Block attributes are applied to entire paragraphs or text blocks and include properties like alignment, indentation, and direction.

Implementation

static final Map<String, EasyAttribute> blocks =
    UnmodifiableMapView<String, EasyAttribute>(
  <String, EasyAttribute<Object?>>{
    direction.key: direction,
    align.key: align,
    lineHeight.key: lineHeight,
    indentation.key: indentation,
    dimensions.key: dimensions,
    ...exclusives,
  },
);