TextLoader constructor

const TextLoader({
  1. Key? key,
  2. int duration = 2,
  3. TextStyle? textStyle,
  4. String text = 'Loading...',
})

Implementation

const TextLoader(
    {super.key, this.duration = 2, this.textStyle, this.text = 'Loading...'})
    : assert(duration > 0, 'Duration must be greater than 0');