LoadingBuilder constructor

const LoadingBuilder({
  1. Key? key,
  2. String? waitingTxt,
  3. TextStyle? textStyle,
  4. Color? txtColor,
})

Implementation

const LoadingBuilder({
  super.key,
  this.waitingTxt,
  this.textStyle,
  this.txtColor,
});