Skip to content

Instantly share code, notes, and snippets.

@benznest
Created March 17, 2019 08:33
Show Gist options
  • Save benznest/833efd9daf20843822e20b4885be5737 to your computer and use it in GitHub Desktop.
Save benznest/833efd9daf20843822e20b4885be5737 to your computer and use it in GitHub Desktop.
Importing with named in Dart
import 'dart:math' as MyMath;
main(){
double value = MyMath.log(2);
print(value); // 0.6931471805599453
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment