InputDecorationSuffixButton.help constructor

InputDecorationSuffixButton.help({
  1. required VoidCallback? onPressed,
})

Implementation

factory InputDecorationSuffixButton.help({
  required VoidCallback? onPressed,
}) =>
    InputDecorationSuffixButton(
      icon: Icons.question_mark,
      onPressed: onPressed,
      tooltip: 'Help',
    );