var_exporter 1.0.0
var_exporter: ^1.0.0 copied to clipboard
Exporting a printable representational string of the given nullable object.
Exporting a printable representational string of the given nullable object.
Like repr(var) in python or var_export($var) in php.
Usage #
import 'package:var_exporter/var_exporter.dart';
final exporter = VarExporter.create();
print(exporter.export('string')); // "string"
print(exporter.export('\$string')); // r"$string"