FlutterWebButton.socialIconGrow constructor

FlutterWebButton.socialIconGrow({
  1. Key? key,
  2. required FlutterWebButtonSocialIcon? flutterWebButtonSocialIcon,
  3. required VoidCallback? onPressed,
  4. required FlutterWebIconOptions? flutterWebIconOptions,
  5. Duration? animationDuration,
  6. double? growAmount = 1.1,
})

Display a social icon with grow effect

Implementation

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