PipCollapsed constructor

const PipCollapsed({
  1. double widthFraction = 0.35,
  2. PipCorner position = PipCorner.bottomRight,
  3. PipEdges margin = const PipEdges(),
  4. double heightDp = 0,
  5. double cornerRadius = 12,
  6. double borderWidth = 0,
  7. Color? borderColor,
  8. bool shadow = true,
  9. PipEntryAnimation entryAnimation = const PipEntryAnimation(),
  10. PipExitAnimation exitAnimation = const PipExitAnimation(),
})

Implementation

const PipCollapsed({
  this.widthFraction = 0.35,
  this.position = PipCorner.bottomRight,
  this.margin = const PipEdges(),
  this.heightDp = 0,
  this.cornerRadius = 12,
  this.borderWidth = 0,
  this.borderColor,
  this.shadow = true,
  this.entryAnimation = const PipEntryAnimation(),
  this.exitAnimation = const PipExitAnimation(),
});