hasChange method

Future<bool> hasChange()

Check the document for modifications

example:

bool hasChange = await document.hasChange();

Implementation

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