GroundedCropRotateBar constructor

const GroundedCropRotateBar({
  1. Key? key,
  2. required ProImageEditorConfigs configs,
  3. required ProImageEditorCallbacks callbacks,
  4. required CropRotateEditorState editor,
  5. required Color selectedRatioColor,
})

Constructor for the GroundedCropRotateBar.

Requires configs, callbacks, editor, and selectedRatioColor.

Implementation

const GroundedCropRotateBar({
  super.key,
  required this.configs,
  required this.callbacks,
  required this.editor,
  required this.selectedRatioColor,
});