IconKey constructor

const IconKey({
  1. Key? key,
  2. required String icon,
  3. required Color backgroundColor,
  4. required Function onPressed,
})

Implementation

const IconKey({
  super.key,
  required this.icon,
  required this.backgroundColor,
  required this.onPressed,
});