CropGridViewer constructor

const CropGridViewer({
  1. Key? key,
  2. required VideoEditorController controller,
  3. bool showGrid = true,
  4. double horizontalMargin = 0.0,
})

It is the viewer that allows you to crop the video

Implementation

const CropGridViewer({
  Key? key,
  required this.controller,
  this.showGrid = true,
  this.horizontalMargin = 0.0,
}) : super(key: key);