DrawerPainter constructor

DrawerPainter({
  1. required Offset offset,
  2. required int archHeight,
  3. dynamic paint,
  4. required bool showCurvedByDefault,
})

Implementation

DrawerPainter({
  required this.offset,
  required this.archHeight,
  paint,
  required this.showCurvedByDefault
}) {
  customPaint = paint ?? customPaint;
}