readJsonValue<T> method
Deserializes a structured json string into an object of type T.
Example
final user = mapper.readValue<User>(dataString, Class<User>());
Implementation
@override
T readJsonValue<T>(String json, Class<T> type) {
final parser = getJsonParser(json);
final result = getJsonDeserializationContext().deserialize(parser, type);
parser.close();
return result;
}