showSquareCrop static method

Future<CroppedFile?> showSquareCrop({
  1. required BuildContext context,
  2. required String imagePath,
})

Implementation

static Future<CroppedFile?> showSquareCrop({
  required BuildContext context,
  required String imagePath,
}) =>
    show(
        context: context,
        imagePath: imagePath,
        aspectRatio: 1.0);