ContainerSkeleton constructor

const ContainerSkeleton({
  1. Key? key,
  2. double height = 10,
  3. double width = 10,
  4. double padding = 0,
  5. double radius = 8,
  6. Widget? child,
})

Implementation

const ContainerSkeleton(
    {super.key,
    this.height = 10,
    this.width = 10,
    this.padding = 0,
    this.radius = 8,
    this.child});