LiquidDrawer constructor

const LiquidDrawer({
  1. Key? key,
  2. Widget? content,
  3. double percentOfWidth = 0.70,
  4. int archHeight = 75,
  5. bool showCurvedByDefault = true,
  6. Paint? paint,
  7. Color startColor = Colors.white,
  8. Color endColor = Colors.white,
})

Implementation

const LiquidDrawer({
  super.key,
  this.content,
  this.percentOfWidth = 0.70,
  this.archHeight = 75,
  this.showCurvedByDefault = true,
  this.paint,
  this.startColor = Colors.white,
  this.endColor = Colors.white
});