isCropMode method

Future<bool> isCropMode()

Whether it is crop mode.

example:

bool isCropMode = await _controller.isCropMode();

Implementation

Future<bool> isCropMode() async {
  return await _channel.invokeMethod('is_crop_mode');
}