RFIDConfig.withoutUI constructor

RFIDConfig.withoutUI(
  1. RFIDCompletion completion
)

RFID chip reading with no UI.

User is supposed to implement the UI.

Since this constructor accepts RFIDCompletion instead of DocumentReaderCompletion, user will be provided with more in-depth error information.

completion - block to execute after the chip reading process finishes.

Implementation

RFIDConfig.withoutUI(RFIDCompletion completion)
    : _rfidCompletion = completion,
      _disableUI = true;