VgkSubTitleWithAnimationWidget constructor

const VgkSubTitleWithAnimationWidget({
  1. Key? key,
  2. String titleTxt = "",
  3. required AnimationController animationController,
  4. required Animation<double> animation,
  5. MaterialColor? color,
  6. TextStyle? titlefontSize,
  7. String? primaryColor,
})

Implementation

const VgkSubTitleWithAnimationWidget(
    {Key? key,
    this.titleTxt = "",
    required this.animationController,
    required this.animation,
    this.color,
    this.titlefontSize,
    this.primaryColor})
    : super(key: key);