Created
March 17, 2019 08:50
-
-
Save benznest/7f21298ad19701c4252a248eac770ed1 to your computer and use it in GitHub Desktop.
Importing with show in Dart
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
import 'dart:math' show Random,Point; | |
main(){ | |
int value = Random().nextInt(10); | |
print(value); // 0 ... 9 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment