This file contains 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
09:25:23.187 1 info flutter.tools [ +72 ms] executing: [/Users/timtraversy/Documents/Flutter/flutter/] git log -n 1 --pretty=format:%H | |
09:25:23.229 2 info flutter.tools [ +47 ms] Exit code 0 from: git log -n 1 --pretty=format:%H | |
09:25:23.229 3 info flutter.tools [ ] 7a4c33425ddd78c54aba07d86f3f9a4a0051769b | |
09:25:23.229 4 info flutter.tools [ ] executing: [/Users/timtraversy/Documents/Flutter/flutter/] git describe --match v*.*.* --first-parent --long --tags | |
09:25:23.246 5 info flutter.tools [ +16 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags | |
09:25:23.246 6 info flutter.tools [ ] v1.5.4-hotfix.2-0-g7a4c33425 | |
09:25:23.259 7 info flutter.tools [ +14 ms] executing: [/Users/timtraversy/Documents/Flutter/flutter/] git rev-parse --abbrev-ref --symbolic @{u} | |
09:25:23.277 8 info flutter.tools [ +15 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} | |
09:25:23.277 9 info flutter.tools [ ] origin/stable | |
09:25:23.277 10 info flutter.tools [ |
This file contains 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
@JS() | |
library storage; | |
import 'package:js/js.dart'; | |
external Storage get localStorage; | |
@JS() | |
class Storage { | |
int length; |