Small doc change to avoid json parse error (#1086)

pull/1089/head
Htoo Pyae Linn 2 years ago committed by GitHub
parent 74544bd945
commit 0046ca6782
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      README.md

@ -90,7 +90,7 @@ You can then write this to storage.
To open a FlutterQuill editor with an existing JSON representation that you've previously stored, you can do something like this:
```dart
var myJSON = jsonDecode(incomingJSONText);
var myJSON = jsonDecode(r'{"insert":"hello\n"}');
_controller = QuillController(
document: Document.fromJson(myJSON),
selection: TextSelection.collapsed(offset: 0),

Loading…
Cancel
Save