FlutterWebButton.buttonHighlightIconFill constructor

FlutterWebButton.buttonHighlightIconFill(
  1. String? text, {
  2. Key? key,
  3. required IconData? icon,
  4. required VoidCallback? onPressed,
  5. required FlutterTextOptions? flutterTextOptions,
  6. Duration? animationDuration,
  7. Color? iconColor,
  8. Color? backgroundAnimatedColor,
})

Simple button with grow effect.

Implementation

FlutterWebButton.buttonHighlightIconFill(
  this.text, {
  Key? key,
  required this.icon,
  required this.onPressed,
  required this.flutterTextOptions,
  this.animationDuration,
  this.iconColor,
  this.backgroundAnimatedColor,
})  : _buttonType = FlutterWebButtonList.buttonHighlightIconFill,
      super(key: key);