NiceAccessibleIconButton constructor

const NiceAccessibleIconButton({
  1. Key? key,
  2. required IconData icon,
  3. required VoidCallback? onPressed,
  4. required String label,
  5. String? hint,
  6. double? size,
  7. Color? color,
  8. Color? backgroundColor,
  9. EdgeInsets? padding,
  10. double? splashRadius,
})

Implementation

const NiceAccessibleIconButton({
  super.key,
  required this.icon,
  required this.onPressed,
  required this.label,
  this.hint,
  this.size,
  this.color,
  this.backgroundColor,
  this.padding,
  this.splashRadius,
});