FHoverEffect constructor

const FHoverEffect({
  1. double opacity = 1,
  2. double scale = 1,
  3. double rotate = 0,
  4. Offset offset = Offset.zero,
  5. FFill? fill,
  6. FShadow? shadow,
  7. FCurve curve = const FCurve(curve: Curves.easeInOut),
})

Implementation

const FHoverEffect({
  this.opacity = 1,
  this.scale = 1,
  this.rotate = 0,
  this.offset = Offset.zero,
  this.fill,
  this.shadow,
  this.curve = const FCurve(
    curve: Curves.easeInOut,
  ),
});