Skip to content

Instantly share code, notes, and snippets.

@RedBrogdon
Created August 1, 2018 17:27
Show Gist options
  • Save RedBrogdon/b036a9fad570a523e7d73d4621fa5d20 to your computer and use it in GitHub Desktop.
Save RedBrogdon/b036a9fad570a523e7d73d4621fa5d20 to your computer and use it in GitHub Desktop.
import 'dart:convert';
try {
final parsed = json.decode(aJsonStr);
} on FormatException catch (e) {
print("That string didn't look like Json.");
} on NoSuchMethodError catch (e) {
print('That string was null!');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment