getRegistrationFileInfo method
Implementation
Future<RegistrationFileInfoDto?> getRegistrationFileInfo (
String? clientId,
String? passCode
) async {
String path = "/storage/registration-file-info/$clientId/$passCode";
return RegistrationFileInfoDto.fromJson(
await get(path, exemptClient:true) ?? {}
);
}