MouseOnHoverEvent constructor

const MouseOnHoverEvent({
  1. Key? key,
  2. required Widget child,
  3. BoxDecoration? decoration,
  4. Size? size,
  5. Widget? mouseChild,
  6. MouseCursor? onHoverMouseCursor,
  7. List<MouseStyle>? customOnHoverMouseStylesStack,
  8. Curve? animationCurve,
  9. Duration? animationDuration,
  10. double? opacity,
  11. Alignment? alignment,
  12. Duration? latency,
})

Creates an MouseOnHoverEvent with the specified child.

Implementation

const MouseOnHoverEvent(
    {Key? key,
    required this.child,
    this.decoration,
    this.size,
    this.mouseChild,
    this.onHoverMouseCursor,
    this.customOnHoverMouseStylesStack,
    this.animationCurve,
    this.animationDuration,
    this.opacity,
    this.alignment,
    this.latency})
    : super(key: key);