TCircularLoader constructor

const TCircularLoader({
  1. Key? key,
  2. Color? foregroundColor,
  3. Color? backgroundColor,
})

Default constructor for the TCircularLoader.

Parameters:

  • foregroundColor: The color of the circular loader.
  • backgroundColor: The background color of the circular loader.

Implementation

const TCircularLoader({
  super.key,
  this.foregroundColor,
  this.backgroundColor,
});