waitForCardRemoved static method

Future<void> waitForCardRemoved(
  1. int context,
  2. String readerName
)

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

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

Implementation

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