ShotsToKill constructor

const ShotsToKill({
  1. Key? key,
  2. required String title,
  3. required VgkShortToKillListModel data,
  4. required AnimationController animationController,
  5. required Animation<double> animation,
  6. required String primaryColor,
})

Implementation

const ShotsToKill(
    {Key? key,
    required this.title,
    required this.data,
    required this.animationController,
    required this.animation,
    required this.primaryColor})
    : super(key: key);