LoadingAnimation constructor

const LoadingAnimation({
  1. Key? key,
  2. String? showText = '',
  3. bool? dependency = true,
})

Implementation

const LoadingAnimation({
  Key? key,
  this.showText = '',
  this.dependency = true,
}) : super(key: key);