JObjectToDictionaryRuntimeObjs static method

Map<String, RuntimeObject> JObjectToDictionaryRuntimeObjs(
  1. Map<String, dynamic> jElementObj
)

Implementation

static Map<String, RuntimeObject> JObjectToDictionaryRuntimeObjs(
    Map<String, dynamic> jElementObj) {
  var dict = <String, RuntimeObject>{};
  jElementObj.forEach((key, value) {
    dict[key] = JsonSerialization.JTokenToRuntimeObject(value)!;
  });
  return dict;
}