json_util 0.0.1
json_util: ^0.0.1 copied to clipboard
JSON utilities for Dart.
example/json_util_example.dart
import 'package:json_util/json_util.dart';
void main() {
const myJson = '{"hello":"world"}';
final decodedValue = DecodedValue.from(myJson);
final map = decodedValue.asMap();
final encodableValue = EncodableValue.map(map);
final yourJson = encodableValue.encode();
print(myJson == yourJson); // true
}