WhiteboardOptions constructor

WhiteboardOptions({
  1. required double customWidth,
  2. required double customHeight,
  3. required WhiteboardParameters parameters,
  4. bool showAspect = true,
})

Implementation

WhiteboardOptions({
  required this.customWidth,
  required this.customHeight,
  required this.parameters,
  this.showAspect = true,
});