AntdLoadingStyle constructor

const AntdLoadingStyle({
  1. bool inherit = true,
  2. Color? color,
  3. AntdBoxStyle? textStyle,
  4. double? size,
  5. Duration duration = const Duration(milliseconds: 1000),
})

Implementation

const AntdLoadingStyle(
    {super.inherit,
    this.color,
    this.textStyle,
    this.size,
    this.duration = const Duration(milliseconds: 1000)});