respond method

Future<void> respond(
  1. Uint8List response
)

Answers the APDU most recently delivered to onApduReceived.

The bytes are sent as-is, so include the status word: 9000 for success, 6D00 for an instruction the card does not support.

Implementation

Future<void> respond(Uint8List response) => androidApi.hceRespond(response);