SmartSkeleton constructor

const SmartSkeleton({
  1. required bool outlined,
  2. required SmartSpace height,
  3. required SmartSpace width,
  4. SmartSkeletonShapeType shape = SmartSkeletonShapeType.square,
  5. Key? key,
})

Implementation

const SmartSkeleton({
  required this.outlined,
  required this.height,
  required this.width,
  this.shape = SmartSkeletonShapeType.square,
  super.key,
});