Message.warning constructor
const
Message.warning({
- required String title,
- String? body,
- Future? cancel,
- List<
MessageAction> actions = const [MessageAction()],
Implementation
const Message.warning({required this.title, this.body, this.cancel, this.actions = const [MessageAction()]})
: icon = Icons.warning_amber_outlined,
color = const Color(0xffffb74d);