getAccountIndividualNumberIdentification method

Future<IndividualNumberIdentificationStatus> getAccountIndividualNumberIdentification({
  1. required String accountId,
})

Implementation

Future<IndividualNumberIdentificationStatus> getAccountIndividualNumberIdentification({
  required String accountId,
}) async {
  return await invokeMethod<IndividualNumberIdentificationStatus>(
    (j) => IndividualNumberIdentificationStatus.fromJson(j),
    'getAccountIndividualNumberIdentification',
    {
      'env': this.env.index,
      'accessToken': this.accessToken,
      'account_id': accountId,
    },
  );
}