NiceSkeleton constructor

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

Implementation

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