BucketActionButton constructor

BucketActionButton(
  1. String? iconSemanticLabel,
  2. TextDirection? iconTextDirection, {
  3. required AnimatedIconData icon,
  4. Color? iconColor,
  5. double? iconSize,
  6. Key? key,
})

BucketActionButton, is used as the default button to manage event on Bucket.

Implementation

BucketActionButton(this.iconSemanticLabel, this.iconTextDirection,
    {required this.icon, this.iconColor, this.iconSize, Key? key})
    : super(key: key);