CPDFSquareAnnotation constructor
CPDFSquareAnnotation({
- String title = "",
- required int page,
- String content = "",
- String uuid = '',
- DateTime? createDate,
- required CPDFRectF rect,
- double borderWidth = 0,
- required Color borderColor,
- double borderAlpha = 255,
- required Color fillColor,
- double fillAlpha = 255,
- CPDFBorderEffectType effectType = CPDFBorderEffectType.solid,
- double dashGap = 0,
Implementation
CPDFSquareAnnotation({
super.title,
required super.page,
super.content,
super.uuid = '',
super.createDate,
required super.rect,
this.borderWidth = 0,
required this.borderColor,
this.borderAlpha = 255,
required this.fillColor,
this.fillAlpha = 255,
this.effectType = CPDFBorderEffectType.solid,
this.dashGap = 0,
}) : super(type: CPDFAnnotationType.square);