ClearNoticeVertical constructor

const ClearNoticeVertical({
  1. Key? key,
  2. required InlineSpan text,
  3. Widget? icon,
  4. Color? color,
})

Creates a vertical notice with rich-text support.

Implementation

const ClearNoticeVertical({
  super.key,
  required this.text,
  this.icon,
  this.color,
});