Skip to content

Instantly share code, notes, and snippets.

@benznest
Created March 17, 2019 08:50
Show Gist options
  • Save benznest/7f21298ad19701c4252a248eac770ed1 to your computer and use it in GitHub Desktop.
Save benznest/7f21298ad19701c4252a248eac770ed1 to your computer and use it in GitHub Desktop.
Importing with show in Dart
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