ExUiLoading constructor

const ExUiLoading({
  1. Key? key,
  2. Color? bgColor,
  3. Widget? child,
  4. Widget? message,
})

Implementation

const ExUiLoading({
  super.key,
  this.bgColor,
  this.child,
  this.message,
});