KCoverWidget constructor

KCoverWidget({
  1. Key? key,
  2. double? overHeight,
  3. Widget? child,
  4. String? downStr,
  5. Duration? duration,
})

Implementation

KCoverWidget(
    {Key? key, this.overHeight, this.child, this.downStr, this.duration})
    : assert(overHeight != null && overHeight >= 90),
      super(key: key);