NUISkeletonView constructor

NUISkeletonView({
  1. Key? key,
  2. double? height,
  3. double? width,
  4. Widget? child,
  5. EdgeInsets? margin,
  6. BorderRadius? radius,
  7. EdgeInsets? padding,
  8. Color? color = NUIColors.NUISkeletalLightGray,
})

Implementation

NUISkeletonView({
  Key? key,
  this.height,
  this.width,
  this.child,
  this.margin,
  this.radius,
  this.padding,
  this.color = NUIColors.NUISkeletalLightGray
}) : super(key: key);