InputDecorationSuffixButton constructor

const InputDecorationSuffixButton({
  1. Key? key,
  2. required IconData icon,
  3. required VoidCallback? onPressed,
  4. String? tooltip,
})

Implementation

const InputDecorationSuffixButton({
  super.key,
  required this.icon,
  required this.onPressed,
  this.tooltip,
});