VgkCardVerticalTopBottomContentWidget constructor

const VgkCardVerticalTopBottomContentWidget({
  1. Key? key,
  2. required AnimationController animationController,
  3. required Animation<double> animation,
  4. required String title,
  5. required String value,
  6. required List<VgkCardVerticalTopBottomSubContentModel> topContent,
  7. required List<VgkCardVerticalTopBottomSubContentModel> bottomContent,
  8. required String primaryColor,
})

Implementation

const VgkCardVerticalTopBottomContentWidget(
    {Key? key,
    required this.animationController,
    required this.animation,
    required this.title,
    required this.value,
    required this.topContent,
    required this.bottomContent,
    required this.primaryColor})
    : super(key: key);