SlideItem constructor
SlideItem({
- Key? key,
- required Widget child,
- required String valueKey,
- bool slideable = true,
- bool dismissible = true,
- String label = "",
- String? secondaryLabel,
- IconData? icon,
- IconData? secondaryIcon,
- Color? color,
- Color? secondaryColor,
- bool slideLeft = true,
- double extentRatio = 0.5,
- dynamic onAction()?,
- dynamic onSecondaryAction()?,
Implementation
SlideItem({
Key? key,
required this.child,
required this.valueKey,
this.slideable = true,
this.dismissible = true,
this.label = "",
this.secondaryLabel,
this.icon,
this.secondaryIcon,
this.color,
this.secondaryColor,
this.slideLeft = true,
this.extentRatio = 0.5,
this.onAction,
this.onSecondaryAction,
}) : super(key: key);