String jsonString(Object json) { dynamic value = json; if (json is String) { value = jsonDecode(json); } return _encoder.convert(value); }