PipenSkeletonizerLinear constructor

PipenSkeletonizerLinear({
  1. Key? key,
  2. FetchState? state,
  3. bool? loading,
  4. Alignment? alignment,
  5. Widget? child,
  6. Widget builder(
    1. bool isLoading
    )?,
})

Implementation

PipenSkeletonizerLinear({
  super.key,
  this.state,
  this.loading,
  this.alignment,
  this.child,
  this.builder,
}) {
  assert(builder != null || child != null);
}