CropController constructor

CropController({
  1. double aspectRatio = 1.0,
  2. double scale = 1.0,
  3. double rotation = 0,
  4. Offset offset = Offset.zero,
})

Constructor

Implementation

CropController({
  double aspectRatio = 1.0,
  double scale = 1.0,
  double rotation = 0,
  Offset offset = Offset.zero
}) {
  _aspectRatio = aspectRatio;
  _scale = scale;
  _rotation = rotation;
  _offset = offset;
}