ClueCircularLoading.white constructor

const ClueCircularLoading.white({
  1. Key? key,
  2. double width = 18,
  3. double height = 18,
  4. Color color = MyColors.xFFFFFFFF,
})

Creates a ClueCircularLoading with a white color.

width specifies the width of the loading indicator. height specifies the height of the loading indicator.

Implementation

const ClueCircularLoading.white({
  super.key,
  this.width = 18,
  this.height = 18,
  this.color = MyColors.xFFFFFFFF,
});