LoadingWidget constructor

const LoadingWidget({
  1. Key? key,
  2. LoadingType type = LoadingType.circular,
  3. String? message,
  4. Color? color,
  5. double size = 40.0,
})

Implementation

const LoadingWidget({
  super.key,
  this.type = LoadingType.circular,
  this.message,
  this.color,
  this.size = 40.0,
});