WidgetTransitionEffects constructor

WidgetTransitionEffects({
  1. Offset? offset,
  2. double? opacity,
  3. double? scale,
  4. Offset? blur,
  5. double? rotation,
  6. Curve? curve,
  7. Offset? skew,
  8. Duration? duration,
  9. Duration? delay,
  10. TransitionAnimationSettingsBuilder? builder,
})

Default constructor with the ability to specify and values available)

Implementation

WidgetTransitionEffects(
    {this.offset,
    this.opacity,
    this.scale,
    this.blur,
    this.rotation,
    this.curve,
    this.skew,
    this.duration,
    this.delay,
    this.builder})
    : style = WidgetTransitionEffectStyle.none;