SkeletonEdge constructor

const SkeletonEdge({
  1. required Widget child,
  2. Key? key,
  3. EdgeInsets? padding,
  4. EdgeInsets? margin,
})

Implementation

const SkeletonEdge({
  required this.child,
  super.key,
  this.padding,
  this.margin,
});