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