startReaderSettings static method
Implementation
static Future startReaderSettings() async {
try {
await _channel.invokeMethod('startReaderSettings');
} on PlatformException catch (ex) {
throw ReaderSdkException(ex.code, ex.message, ex.details['debugCode'],
ex.details['debugMessage']);
}
}