hasChange method

  1. @Deprecated("use CPDFDocument().hasChange()")
Future<bool> hasChange()

Check the document for modifications

example:

bool hasChange = await document.hasChange();

Implementation

@Deprecated("use CPDFDocument().hasChange()")
Future<bool> hasChange() async {
  return await _document.hasChange();
}