GridPaper.seyes constructor

GridPaper.seyes({
  1. EdgeInsetsGeometry margin = const EdgeInsets.only(top: 20 * PdfPageFormat.mm, bottom: 10 * PdfPageFormat.mm, left: 36 * PdfPageFormat.mm, right: 0),
  2. Widget? child,
})

Implementation

GridPaper.seyes({
  this.margin = const EdgeInsets.only(
    top: 20 * PdfPageFormat.mm,
    bottom: 10 * PdfPageFormat.mm,
    left: 36 * PdfPageFormat.mm,
    right: 0,
  ),
  Widget? child,
}) : horizontalColor = const PdfColor.fromInt(0xffc8c8de),
     verticalColor = const PdfColor.fromInt(0xffc8c8de),
     horizontalInterval = 8 * PdfPageFormat.mm,
     verticalInterval = 8 * PdfPageFormat.mm,
     horizontalDivisions = 1,
     verticalDivisions = 4,
     horizontalSubdivisions = 1,
     verticalSubdivisions = 1,
     horizontalOffset = 0,
     verticalOffset = 1,
     border = const Border(
       left: BorderSide(color: PdfColor.fromInt(0xfff6bbcf)),
     ),
     scale = 1,
     opacity = 1,
     super(child: child);