IntroStaticTextScale constructor

const IntroStaticTextScale({
  1. Key? key,
  2. required Widget child,
  3. double scale = 1,
})

Implementation

const IntroStaticTextScale({
  Key? key,
  required this.child,
  this.scale = 1,
}) : super(key: key);