GradientFab constructor

const GradientFab({
  1. Key? key,
  2. Decoration? decoration,
  3. Duration? animationDuration,
  4. AnimatedIconData? animatedIconData,
  5. Color? animatedIconColor,
  6. List<FabChild>? children,
  7. VoidCallback? onOpen,
  8. VoidCallback? onClose,
  9. ScrollController? controller,
})

Implementation

const GradientFab(
    {Key? key,
    this.decoration,
    this.animationDuration,
    this.animatedIconData,
    this.animatedIconColor,
    this.children,
    this.onOpen,
    this.onClose,
    this.controller})
    : super(key: key);