StackCard constructor

const StackCard({
  1. Key? key,
  2. double width = 140,
  3. double height = 140,
  4. StackCardSelected? cardSelected,
  5. List<Widget> children = const <Widget>[],
  6. SlideType slideType = SlideType.horizontal,
  7. CardOrientation orientation = CardOrientation.bottom,
  8. 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);