pretty_json 1.1.0-nullsafety pretty_json: ^1.1.0-nullsafety copied to clipboard
A small wrapper for pretty printing JSON objects in a more human readable format. Typically this package would be used for network logging and debugging objects.
example/pretty_json_example.dart
import 'package:pretty_json/pretty_json.dart';
void main() {
var json = <String, dynamic>{
'a': 'value 1',
'b': 'value 2',
'c': {
'd': 'value 3',
'e': [1, 2, 3]
}
};
print(prettyJson(json, indent: 2));
printPrettyJson(json);
}