sendCommands method

Future<Stream<SmartCardResponse>> sendCommands(
  1. Application application,
  2. List<List<int>> input, {
  3. List<int>? verify,
})

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)));
}