ScreenboardOptions constructor
ScreenboardOptions({ - required double customWidth,
- required double customHeight,
- required ScreenboardParameters parameters,
- bool showAspect = true,
- Color defaultColor = Colors.black,
- double brushThickness = 6.0,
- double lineThickness = 6.0,
- double eraserThickness = 10.0,
- bool allowAnnotation = true,
- bool autoRemoveShapes = true,
- Duration autoRemoveDuration = const Duration(seconds: 15),
})
Implementation
ScreenboardOptions({
required this.customWidth,
required this.customHeight,
required this.parameters,
this.showAspect = true,
this.defaultColor = Colors.black,
this.brushThickness = 6.0,
this.lineThickness = 6.0,
this.eraserThickness = 10.0,
this.allowAnnotation = true,
this.autoRemoveShapes = true,
this.autoRemoveDuration = const Duration(seconds: 15),
});