stringify static method

String stringify(
  1. Map<String, dynamic> ejsonMap
)

Converts the element and type pairs in a deserialized object to strings.

Implementation

static String stringify(Map<String, dynamic> ejsonMap) =>
    json.encode(ejsonMap);