React Native's Native Module documentation for Android says that ReadableMap directly maps to a Javascript object. I assume this means that when I pass an object from Javascript to a native module, it is available as a ReadableMap.
How do I do the reverse, which is to create a dictionary (mapping string to string) in a native module and return it to Javascript via a callback?