Skip to content

Instantly share code, notes, and snippets.

@BKinya
Created September 10, 2020 19:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BKinya/bf07dda506ad23dc48847f0281158562 to your computer and use it in GitHub Desktop.
Save BKinya/bf07dda506ad23dc48847f0281158562 to your computer and use it in GitHub Desktop.
class Animal{
void move(){
print('Animal moves');
}
}
class Fish extends Animal{
@override
void move(){
print('Fish swims');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment