setAttrib method
Implementation
@override
SCardResult setAttrib(int hCard, int dwAttrId, List<int> pbAttr) {
final pbAttrBuffer = _allocateNativeBytes(pbAttr);
try {
return SCardResult(_winscard.SCardSetAttrib(hCard, dwAttrId, pbAttrBuffer, pbAttr.length));
}
finally {
calloc.free(pbAttrBuffer);
}
}