CropGridStyle constructor

const CropGridStyle({
  1. Color croppingBackground = Colors.black45,
  2. Color background = Colors.black,
  3. Color gridLineColor = Colors.white,
  4. double gridLineWidth = 1,
  5. int gridSize = 3,
  6. Color boundariesColor = Colors.white,
  7. Color selectedBoundariesColor = kDefaultSelectedColor,
  8. double boundariesLength = 20,
  9. double boundariesWidth = 5,
})

Style for CropGridViewer. It's use on VideoEditorController

Implementation

const CropGridStyle({
  this.croppingBackground = Colors.black45,
  this.background = Colors.black,
  this.gridLineColor = Colors.white,
  this.gridLineWidth = 1,
  this.gridSize = 3,
  this.boundariesColor = Colors.white,
  this.selectedBoundariesColor = kDefaultSelectedColor,
  this.boundariesLength = 20,
  this.boundariesWidth = 5,
});