ScaleAnimatedText constructor

const ScaleAnimatedText({
  1. Key? key,
  2. required String? text,
  3. TextStyle? textStyle,
  4. double? scalingFactor = 0.2,
  5. Duration? duration,
})

Implementation

const ScaleAnimatedText({
  Key? key,
  required this.text,
  this.textStyle,
  this.scalingFactor = 0.2,
  this.duration,
}) : super(key: key);