Created
June 24, 2019 15:29
-
-
Save HenriBeck/4f8ed3d59148f98a747cdd0d68557044 to your computer and use it in GitHub Desktop.
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
abstract class State {} | |
class StateA implements State {} | |
final state = StateA(); | |
void main() { | |
print(state is State); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment