selectChildDF method

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

Selects child DF by childDF ID. Can throw ICCError or ComProviderError.

Implementation

Future<Uint8List?> selectChildDF({ required Uint8List childDF, int p2 = 0, int cla = ISO7816_CLA.NO_SM, int ne = 0 }) async {
  return await selectFile(cla: cla, p1: ISO97816_SelectFileP1.byChildDFID, p2: p2, data: childDF, ne: ne);
}