BottomSheetWidget constructor
BottomSheetWidget({
- Key? key,
- double? width,
- required double height,
- required Widget child,
- EdgeInsetsGeometry? padding,
- Orientation orientation = Orientation.portrait,
- bool isNeedDropDownButton = true,
Implementation
BottomSheetWidget({
Key? key,
double? width,
required this.height,
required this.child,
this.padding,
this.orientation = Orientation.portrait,
this.isNeedDropDownButton = true,
}) : width = width ??
(orientation == Orientation.portrait
? Get.width
: 387.0.scale375()),
super(key: key);