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