DataEditorConfig constructor

DataEditorConfig({
  1. Color bgColor = Colors.black,
  2. EdgeInsets cropRectPadding = const EdgeInsets.all(20.0),
  3. double cornerLength = 30,
  4. double cornerWidth = 4,
  5. Color cornerColor = Colors.blue,
  6. Size cornerHitTestSize = const Size(40, 40),
  7. Color lineColor = Colors.white,
  8. double lineWidth = 2,
  9. double lineHitTestWidth = 40,
  10. double dottedLength = 2,
  11. Color dottedColor = Colors.white,
  12. EditorMaskColorHandler? editorMaskColorHandler,
})

Implementation

DataEditorConfig({
  this.bgColor = Colors.black,
  this.cropRectPadding = const EdgeInsets.all(20.0),
  this.cornerLength = 30,
  this.cornerWidth = 4,
  this.cornerColor = Colors.blue,
  this.cornerHitTestSize = const Size(40, 40),
  this.lineColor = Colors.white,
  this.lineWidth = 2,
  this.lineHitTestWidth = 40,
  this.dottedLength = 2,
  this.dottedColor = Colors.white,
  this.editorMaskColorHandler,
});