There is one API method which looks like:
Task<Response> UpdateImage([AliasAs("banner_image")] StreamPart banner_image=null,[AliasAs("background_image")] StreamPart background_image =null);
But at a time only one image will be there from Frond-End
For ex. I got an image for banner_image then
APIHelper.UpdateImage(banner_image: image)
I getting the attribute information from one variable like,
string key = "banner_image";
So the question is how I can get the value of key and pass it like,
APIHelper.UpdateImage(`dynamic_key_extracted_from_key_variable_value`: image)