NiceSkeletonBox constructor

const NiceSkeletonBox({
  1. Key? key,
  2. double? width,
  3. double height = 16,
  4. BorderRadius? borderRadius,
  5. EdgeInsets? margin,
})

Implementation

const NiceSkeletonBox({
  super.key,
  this.width,
  this.height = 16,
  this.borderRadius,
  this.margin,
});