AntdLoading constructor

const AntdLoading({
  1. Key? key,
  2. AntdLoadingStyle? style,
  3. AntdStyleBuilder<AntdLoadingStyle, AntdLoading>? styleBuilder,
  4. double? size,
  5. AntdColor? color,
  6. Widget? text,
  7. bool circular = false,
  8. Widget? child,
  9. bool? spinning = true,
})

Implementation

const AntdLoading({
  super.key,
  super.style,
  super.styleBuilder,
  this.size,
  this.color,
  this.text,
  this.circular = false,
  this.child,
  this.spinning = true,
});