CLSkeleton constructor

const CLSkeleton({
  1. Key? key,
  2. double width = double.infinity,
  3. double height = 16.0,
  4. double borderRadius = 4.0,
})

Implementation

const CLSkeleton({
  super.key,
  this.width = double.infinity,
  this.height = 16.0,
  this.borderRadius = 4.0,
});