An open API service indexing awesome lists of open source software.

https://github.com/f3ath/dart-quoted-string

String quoting/unquoting in Dart.
https://github.com/f3ath/dart-quoted-string

Last synced: 6 months ago
JSON representation

String quoting/unquoting in Dart.

Awesome Lists containing this project

README

          

# quoted_string
String quoting/unquoting in Dart.

```dart
import 'package:quoted_string/quoted_string.dart';

void main() {
// "Quote (\") and backslash (\\)"
print(r'Quote (") and backslash (\)'.quote());

// Quote (") and backslash (\)
print(r'"Quote (\") and backslash (\\)"'.unquote());
}
```