Skip to content

Instantly share code, notes, and snippets.

@demirdev
Created October 10, 2022 16:00
Show Gist options
  • Save demirdev/5be633a53b96a5cbc105f9c14f0774a7 to your computer and use it in GitHub Desktop.
Save demirdev/5be633a53b96a5cbc105f9c14f0774a7 to your computer and use it in GitHub Desktop.
import 'dart:convert';
extension PrettyJson on Object? {
String get prettyJson => const JsonEncoder.withIndent(
' ',
).convert(this);
}
/// Usage
///
print() {
"any-object".prettyJson;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment