WidgetTransitionEffects.withStyle constructor

  1. @protected
WidgetTransitionEffects.withStyle({
  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,
  11. required WidgetTransitionEffectStyle style,
})

Widget transition effect constructor where a style is passed in

Implementation

@protected
WidgetTransitionEffects.withStyle(
    {this.offset,
    this.opacity,
    this.scale,
    this.blur,
    this.rotation,
    this.curve,
    this.skew,
    this.duration,
    this.delay,
    this.builder,
    required this.style});