SuperSkeleton constructor

const SuperSkeleton({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. ShapeBorder shape = const RoundedRectangleBorder(borderRadius: BorderRadius.all(Radius.circular(4))),
  5. EdgeInsetsGeometry? margin,
})

Implementation

const SuperSkeleton({
  super.key,
  this.width,
  this.height,
  this.shape = const RoundedRectangleBorder(
    borderRadius: BorderRadius.all(Radius.circular(4)),
  ),
  this.margin,
});