SoftUiLoading constructor

const SoftUiLoading({
  1. String text = 'Carregando...',
  2. double dimension = 16,
  3. double strokeWidth = 2,
  4. bool showText = true,
  5. Color? color,
  6. Key? key,
})

Implementation

const SoftUiLoading({
  this.text = 'Carregando...',
  this.dimension = 16,
  this.strokeWidth = 2,
  this.showText = true,
  this.color,
  super.key,
});