copyWith method
JustBottomSheetDragZoneConfiguration
copyWith({
- double? height,
- double? width,
- Color? backgroundColor,
- DragZonePosition? dragZonePosition,
- Widget? child,
Implementation
JustBottomSheetDragZoneConfiguration copyWith({
double? height,
double? width,
Color? backgroundColor,
DragZonePosition? dragZonePosition,
Widget? child,
}) {
return JustBottomSheetDragZoneConfiguration(
height: height ?? this.height,
width: width ?? this.width,
backgroundColor: backgroundColor ?? this.backgroundColor,
dragZonePosition: dragZonePosition ?? this.dragZonePosition,
child: child ?? this.child,
);
}