Skip to content

Instantly share code, notes, and snippets.

@BlackHC
Created April 16, 2017 09:46
Show Gist options
  • Save BlackHC/6bd148bfd2023c49db11103b2eb67f79 to your computer and use it in GitHub Desktop.
Save BlackHC/6bd148bfd2023c49db11103b2eb67f79 to your computer and use it in GitHub Desktop.
Shadowing of imported symbols
class MyClass {
static final value = 1;
}
import ‘a.dart’;
class MyClass {
static final value = 10;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment