0 purchases
var exporter
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"
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.