AntdSkeleton constructor

const AntdSkeleton({
  1. Key? key,
  2. AntdSkeletonStyle? style,
  3. AntdStyleBuilder<AntdSkeletonStyle, AntdSkeleton>? styleBuilder,
  4. bool animated = true,
  5. bool title = true,
  6. int rows = 3,
  7. Duration duration = const Duration(milliseconds: 1200),
  8. bool? spin,
  9. Widget? child,
})

Implementation

const AntdSkeleton(
    {super.key,
    super.style,
    super.styleBuilder,
    this.animated = true,
    this.title = true,
    this.rows = 3,
    this.duration = const Duration(milliseconds: 1200),
    this.spin,
    this.child});