WrapperContainer constructor

const WrapperContainer({
  1. Key? key,
  2. required Widget child,
  3. double? heightOfWheel,
})

Constructor for the Widget

Implementation

const WrapperContainer({
  Key? key,
  required this.child,
  this.heightOfWheel,
}) : super(key: key);