isReady property

Future<bool> isReady

Allows you to check if Document Reader is ready for use.

Implementation

Future<bool> get isReady async {
  return await _bridge.invokeMethod("getDocumentReaderIsReady", []);
}