Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save serpicokhan/00c6ec0a0255d32a3bfb549b3f7d9b45 to your computer and use it in GitHub Desktop.

Select an option

Save serpicokhan/00c6ec0a0255d32a3bfb549b3f7d9b45 to your computer and use it in GitHub Desktop.
abstract.dart
// 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