CPDFFormAttr.listBox constructor

const CPDFFormAttr.listBox({
  1. Color fillColor = const Color(0xFFDDE9FF),
  2. Color borderColor = const Color(0xFF1460F3),
  3. int borderWidth = 2,
  4. Color fontColor = Colors.black,
  5. int fontSize = 20,
  6. CPDFTypeface typeface = CPDFTypeface.helvetica,
  7. bool isBold = false,
  8. bool isItalic = false,
})

Implementation

const CPDFFormAttr.listBox({
  Color fillColor = const Color(0xFFDDE9FF),
  Color borderColor = const Color(0xFF1460F3),
  int borderWidth = 2,
  Color fontColor = Colors.black,
  int fontSize = 20,
  CPDFTypeface typeface = CPDFTypeface.helvetica,
  bool isBold = false,
  bool isItalic = false,
}) : this(
          formType: CPDFFormType.listBox,
          fillColor: fillColor,
          borderColor: borderColor,
          borderWidth: borderWidth,
          fontColor: fontColor,
          fontSize: fontSize,
          typeface: typeface,
          isBold: isBold,
          isItalic: isItalic);