FlutterWebButton.simpleIcon constructor

FlutterWebButton.simpleIcon({
  1. Key? key,
  2. required IconData? icon,
  3. required VoidCallback? onPressed,
  4. required FlutterWebIconOptions? flutterWebIconOptions,
})

Simple icon with no animation.

Implementation

FlutterWebButton.simpleIcon({
  Key? key,
  required this.icon,
  required this.onPressed,
  required this.flutterWebIconOptions,
})  : _buttonType = FlutterWebButtonList.simpleIcon,
      super(key: key);