WhiteboardShape constructor
WhiteboardShape({ - required WhiteboardShapeType type,
- List<Offset>? points,
- Offset? start,
- Offset? end,
- String? text,
- required Color color,
- required double thickness,
- LineType lineType = LineType.solid,
- String? fontFamily,
- double? fontSize,
- Image? image,
- String? imageSrc,
})
Implementation
WhiteboardShape({
required this.type,
this.points,
this.start,
this.end,
this.text,
required this.color,
required this.thickness,
this.lineType = LineType.solid,
this.fontFamily,
this.fontSize,
this.image,
this.imageSrc,
});