isRFIDAvailableForUse method

Future<bool> isRFIDAvailableForUse()

Allows you to check if native RFID chip reading can be performed based on your license and Core framework capabilities.

Returns true if native RFID chip reading is supported.

Implementation

Future<bool> isRFIDAvailableForUse() async {
  return await _bridge.invokeMethod("getIsRFIDAvailableForUse", []);
}