waitForCardPresent static method

Future<Map> waitForCardPresent(
  1. int context,
  2. String readerName
)

Waits for a card to be present on the specified reader.

If a card is already present, it does not wait.

Implementation

static Future<Map> waitForCardPresent(int context, String readerName) {
  return _platform.waitForCardPresent(context, readerName);
}