I'm trying to make a Dart function that combines two JSONs. I can do this easily with a proper JSON in the format {"a":"b","c":"d"} but FlutterFlow's "Create Map (JSON)" feature is creating JSON without quotes like this {a:b,c:d}. As a result, I can't get any dart functions to merge the two JSONs to work.
Can anyone think of a good way to combine multiple of these JSON maps?