iconTheme property

Coral<IconThemeData> get iconTheme

Reactively observes the current IconThemeData.

Ensures:

  • Emits updated IconThemeData derived from the active element context.

AI & Developer Note: Always cache derived line nodes as late final fields to prevent dormant access errors.

Implementation

Coral<IconThemeData> get iconTheme => map((e) => IconTheme.of(e)).distinct();