Created
July 10, 2019 05:59
-
-
Save diegoveloper/20eab4288fbf688c6517365b89fc2b22 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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