How to get the keys in the same order as stored in a map of type “map[string]interface{}”?
I’ve tried MapKeys() from reflect package and also tried extracting using a “for loop”, but couldn’t get keys in the same order as they are present in map.
Please do help me with this.