OffsetAnimation constructor

const OffsetAnimation({
  1. Key? key,
  2. Widget? child,
  3. bool? hideNavigationBar,
  4. double? navBarHeight,
  5. dynamic onAnimationComplete(
    1. bool,
    2. bool
    )?,
  6. bool extendedLength = false,
})

Implementation

const OffsetAnimation(
    {Key? key,
    this.child,
    this.hideNavigationBar,
    this.navBarHeight,
    this.onAnimationComplete,
    this.extendedLength = false})
    : super(key: key);