cancelCompression method

Future<void> cancelCompression()

stop compressing the file that is currently being compressed. If there is no compression process, nothing will happen.

Implementation

Future<void> cancelCompression() async {
  await _invoke<void>('cancelCompression');
}