CPDFLineAnnotation constructor
CPDFLineAnnotation({
- 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 CPDFLineType lineHeadType,
- required CPDFLineType lineTailType,
Implementation
CPDFLineAnnotation(
{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.lineHeadType,
required this.lineTailType})
: super(
type: type,
title: title,
page: page,
content: content,
uuid: uuid,
createDate: createDate,
rect: rect);