NoticeView constructor

const NoticeView({
  1. Key? key,
  2. String? title,
  3. required String message,
  4. required List<Widget> actions,
  5. required NoticeStatus status,
  6. NoticeStyle? style,
})

Implementation

const NoticeView({
  super.key,
  this.title,
  required this.message,
  required this.actions,
  required this.status,
  this.style,
});