JuiLoading.big constructor

const JuiLoading.big({
  1. Key? key,
  2. Color color = JuiColors.primaryColor,
  3. double size = JuiFontSize.f40,
  4. double strokeWidth = 5,
  5. bool withBackground = false,
})

Implementation

const JuiLoading.big({
  Key? key,
  this.color = JuiColors.primaryColor,
  this.size = JuiFontSize.f40,
  this.strokeWidth = 5,
  this.withBackground = false,
})  : assert(size > 0),
      assert(strokeWidth > 0),
      super(key: key);