LoadingWidget constructor

const LoadingWidget({
  1. Key? key,
  2. bool isStyle1 = true,
  3. double strokeWidth = 2,
  4. String? loadingText,
  5. TextStyle? loadingTextStyle,
  6. double? size,
})

Implementation

const LoadingWidget({
  Key? key,
  this.isStyle1 = true,
  this.strokeWidth = 2,
  this.loadingText,
  this.loadingTextStyle,
  this.size,
}) : super(key: key);