ActionNotiView constructor

const ActionNotiView({
  1. Key? key,
  2. required String icon,
  3. required dynamic onTap(),
})

Implementation

const ActionNotiView({
  Key? key,
  required this.icon,
  required this.onTap,
}) : super(key: key);