MySkeleton constructor

const MySkeleton({
  1. double? height,
  2. double? width,
  3. Color? color,
  4. EdgeInsets? margin,
  5. EdgeInsets? padding,
  6. double cornerRadius = 8.0,
  7. Widget? child,
  8. Key? key,
})

Implementation

const MySkeleton({
  this.height,
  this.width,
  this.color,
  this.margin,
  this.padding,
  this.cornerRadius = 8.0,
  this.child,
  super.key,
});