removeApduResponse method

  1. @override
Future<void> removeApduResponse(
  1. int port
)
override

Removes an APDU response from the specified port

Implementation

@override
Future<void> removeApduResponse(int port) async {
  await methodChannel.invokeMethod<String>(
    'removeApduResponse',
    {'port': port},
  );
}