Dart: Abstract Method
Abstract methods can only exist within an abstract class.
To make a method abstract, use a semicolon (;) instead of the method body.
void talk (); // Abstract method
void walk (); // Abstract method
Normal classes can extend the abstract class...