JuiLoading constructor

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

Implementation

JuiLoading({
  Key? key,
  this.color = JuiColors.primaryColor,
  this.size,
  this.withBackground = false,
}) : super(key: key);