crop method

Future<void> crop({
  1. required int width,
  2. required int height,
})

Implementation

Future<void> crop({required int width, required int height}) async {
  _temp = await _generator.crop(await _getPath(), width, height);
}