FlutterWebButton.socialIcon constructor

FlutterWebButton.socialIcon({
  1. Key? key,
  2. required FlutterWebButtonSocialIcon? flutterWebButtonSocialIcon,
  3. required VoidCallback? onPressed,
  4. required FlutterWebIconOptions? flutterWebIconOptions,
  5. Duration? animationDuration,
})

Display a simple social icon.

Implementation

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