Skip to content

Instantly share code, notes, and snippets.

@jodinathan
Created April 3, 2019 20:23
Show Gist options
  • Save jodinathan/110cea532e99603fb5dcd690f3d37176 to your computer and use it in GitHub Desktop.
Save jodinathan/110cea532e99603fb5dcd690f3d37176 to your computer and use it in GitHub Desktop.
encode fail
import 'dart:convert' as conv;
void main() {
Map<int, Map<String, dynamic>> aa = {
5: {
'hello': 1
}
};
print('aa: $aa');
print('aa encoded: ${conv.json.encode(aa)}');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment