SkeletonPlus.custom constructor

SkeletonPlus.custom({
  1. required bool enabled,
  2. Color? baseColor,
  3. Color? highlightColor,
  4. Duration? duration,
  5. bool showShadows = false,
  6. bool showBorders = false,
})

Custom Skeleton animation

Implementation

SkeletonPlus.custom({
  required this.enabled,
  this.baseColor,
  this.highlightColor,
  this.duration,
  this.showShadows = false,
  this.showBorders = false,
});