Skeleton constructor

const Skeleton({
  1. Key? key,
  2. double height = 20,
  3. double width = 200,
  4. double cornerRadius = 4,
})

Implementation

const Skeleton({
  super.key,
  this.height = 20,
  this.width = 200,
  this.cornerRadius = 4,
});