CLoading constructor

const CLoading({
  1. Key? key,
  2. Color? color,
  3. double size = 28,
  4. double strokeWidth = 3,
  5. bool isAndroid = false,
})

Implementation

const CLoading({
  super.key,
  this.color,
  this.size = 28,
  this.strokeWidth = 3,
  this.isAndroid = false,
});