Skeleton constructor

const Skeleton({
  1. String? width,
  2. String? height,
  3. String? borderRadius,
  4. bool circle = false,
  5. Key? key,
})

Implementation

const Skeleton({
  this.width,
  this.height,
  this.borderRadius,
  this.circle = false,
  super.key,
});