Skip to content

Instantly share code, notes, and snippets.

@diegoveloper
Created July 10, 2019 05:59
Show Gist options
  • Select an option

  • Save diegoveloper/20eab4288fbf688c6517365b89fc2b22 to your computer and use it in GitHub Desktop.

Select an option

Save diegoveloper/20eab4288fbf688c6517365b89fc2b22 to your computer and use it in GitHub Desktop.
void main() {
const Map mymap = {
'status': {
'start': ['Start', 'ok', 'go'],
},
'update': {
'now': ['Start', 'ok', 'go'],
},
'time': [
['20', '10s', '5s'],
['45', '30s', '15s']
]
};
print(mymap['status']['start']);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment