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