StackCard constructor
const
StackCard({
- Key? key,
- double width = 140,
- double height = 140,
- StackCardSelected? cardSelected,
- List<
Widget> children = const <Widget>[], - SlideType slideType = SlideType.horizontal,
- CardOrientation orientation = CardOrientation.bottom,
- Duration duration = const Duration(milliseconds: 300),
Implementation
const StackCard(
{Key? key,
this.width = 140,
this.height = 140,
this.cardSelected,
this.children = const <Widget>[],
this.slideType = SlideType.horizontal,
this.orientation = CardOrientation.bottom,
this.duration = const Duration(milliseconds: 300),
}) : super(key: key);