Created
May 16, 2022 13:44
-
-
Save serpicokhan/00c6ec0a0255d32a3bfb549b3f7d9b45 to your computer and use it in GitHub Desktop.
abstract.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
| // This class is declared abstract and thus | |
| // can't be instantiated. | |
| abstract class AbstractContainer { | |
| // Define constructors, fields, methods... | |
| void updateChildren(); // Abstract method. | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment