PipenSkeletonizer constructor

const PipenSkeletonizer({
  1. Key? key,
  2. FetchState? state,
  3. bool? loading,
  4. Alignment? alignment,
  5. required Widget child,
})

Implementation

const PipenSkeletonizer({
  super.key,
  this.state,
  this.loading,
  this.alignment,
  required this.child,
});