NsgCropPage constructor

NsgCropPage({
  1. Key? key,
  2. required List<Uint8List> imageDataList,
  3. bool isCircle = false,
  4. bool isFree = true,
  5. double? aspectRatio = 16 / 9,
  6. bool interactive = true,
})

Implementation

NsgCropPage({
  Key? key,
  required this.imageDataList,
  //required this.img,
  this.isCircle = false,
  this.isFree = true,
  this.aspectRatio = 16 / 9,
  this.interactive = true,
}) : super(key: key);