CropGrid constructor

const CropGrid({
  1. Key? key,
  2. required Rect crop,
  3. required Color gridColor,
  4. required double cornerSize,
  5. required double thinWidth,
  6. required double thickWidth,
  7. required Color scrimColor,
  8. required bool alwaysShowThirdLines,
  9. required bool isMoving,
  10. required ValueChanged<Size> onSize,
})

Implementation

const CropGrid({
  Key? key,
  required this.crop,
  required this.gridColor,
  required this.cornerSize,
  required this.thinWidth,
  required this.thickWidth,
  required this.scrimColor,
  required this.alwaysShowThirdLines,
  required this.isMoving,
  required this.onSize,
}) : super(key: key);