CustomLoading constructor

const CustomLoading({
  1. Key? key,
  2. Color? backgroundColor,
  3. Color? textColor,
  4. String? title,
  5. String? subtitle,
  6. String? description,
})

Implementation

const CustomLoading({
  super.key,
  this.backgroundColor,
  this.textColor,
  this.title,
  this.subtitle,
  this.description
});