ProfileCrop constructor

const ProfileCrop({
  1. Key? key,
  2. required File file,
  3. String title = 'Crop',
  4. double aspectRatio = 1,
})

Implementation

const ProfileCrop(
    {Key? key, required this.file, this.title = 'Crop', this.aspectRatio = 1})
    : super(key: key);