Message.info constructor

const Message.info({
  1. required String title,
  2. String? body,
  3. Future? cancel,
  4. 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);