PipenBuilderWhen<W> constructor

const PipenBuilderWhen<W>({
  1. Key? key,
  2. Widget? deny,
  3. double? height,
  4. double? width,
  5. EdgeInsets? margin,
  6. Widget? skeleton,
  7. Alignment? alignment,
  8. bool loading = false,
  9. required dynamic value,
  10. required Widget child(
    1. W on
    ),
})

Implementation

const PipenBuilderWhen({
  super.key,
  this.deny,
  this.height,
  this.width,
  this.margin,
  this.skeleton,
  this.alignment,
  this.loading = false,
  required this.value,
  required this.child,
});