GetJsonValue constructor

const GetJsonValue({
  1. required String json,
})

Converts a JSON-serialized string to corresponding JsonValue object. Can be called synchronously

Implementation

const GetJsonValue({
  required this.json,
});