setCropMode method
Sets whether it is crop mode.
cropMode
Whether it is crop mode.
example:
_controller.setCropMode(true);
Implementation
Future<void> setCropMode(bool isCropMode) async {
await _channel.invokeMethod('set_crop_mode', isCropMode);
}