Skip to content

Instantly share code, notes, and snippets.

@bc-lee
Last active December 10, 2019 04:56
Show Gist options
  • Save bc-lee/87e254b1a8e6cf43c583ebb021703ea5 to your computer and use it in GitHub Desktop.
Save bc-lee/87e254b1a8e6cf43c583ebb021703ea5 to your computer and use it in GitHub Desktop.
Dart JSON Parse error
import "dart:convert";
main() {
var input = ["{\"key\":\"value0\"}{\"key\":\"value1\"}"];
Stream.fromIterable(input)
.transform(JsonDecoder())
.listen((item) {
print("item: $item\n");
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment