PipenSkeleton constructor

const PipenSkeleton({
  1. Key? key,
  2. dynamic state,
  3. double? width,
  4. double? height,
  5. bool? isLoading,
  6. required Widget skeleton,
  7. required Widget child,
})

Implementation

const PipenSkeleton({
  super.key,
  this.state,
  this.width,
  this.height,
  this.isLoading,
  required this.skeleton,
  required this.child,
});