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