selectParentDF method

Future<Uint8List?> selectParentDF({
  1. int p2 = 0,
  2. int cla = ISO7816_CLA.NO_SM,
  3. int ne = 0,
})

Selects parent DF under current DF. Can throw ICCError or ComProviderError.

Implementation

Future<Uint8List?> selectParentDF(
    {int p2 = 0, int cla = ISO7816_CLA.NO_SM, int ne = 0}) async {
  return await selectFile(
      cla: cla, p1: ISO97816_SelectFileP1.parentDF, p2: p2, ne: ne);
}