NoticeView constructor
const
NoticeView({
- Key? key,
- String? title,
- required String message,
- required List<
Widget> actions, - required NoticeStatus status,
- NoticeStyle? style,
Implementation
const NoticeView({
super.key,
this.title,
required this.message,
required this.actions,
required this.status,
this.style,
});