sendCommands method
Implementation
Future<Stream<SmartCardResponse>> sendCommands(
Application application, List<List<int>> input,
{List<int>? verify}) async {
if (verify != null) {
await _sendCommand(verify);
}
return Stream.fromFutures(input.map((e) => _sendCommand(e)));
}