selectFileByDFName method
Selects file by DF name Can throw ICCError or ComProviderError.
Implementation
Future<Uint8List?> selectFileByDFName({ required Uint8List dfName, int p2 = 0, int cla = ISO7816_CLA.NO_SM, int ne = 0 }) async {
return await selectFile(cla: cla, p1: ISO97816_SelectFileP1.byDFName, p2: p2, data: dfName, ne: ne);
}