Programming in Dart: Classes

Jun 28 2022 · Dart 2.17, Flutter 3.0, DartPad

Part 2: Learn Inheritance

15. Use Abstract Classes

Episode complete

Play next episode

Next
About this episode

Leave a rating/review

See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 14. Challenge: Override a Method Next episode: 16. Implement an Interface

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

So far, things have been straightforward but with this episode, things are about to get a little abstract. I’m going to introduce you to abstract classes. But before we discuss abstract classes you need to understand the concept of an interface.

ImageGenerator generator = NetworkGenerator();
generator.fetchImage();
abstract class HelloWorld {

}
var hello = HelloWorld();
var message = 'Hello World!';
String getHelloString();
class BackwardsHello extends HelloWorld {

}
@override
String getHelloString() {
    return message.split('').reversed.join();
}
class ShoutyHello extends HelloWorld {
  @override
  String getHelloString() {
    return message.toUpperCase();
  }
}
HelloWorld hello = BackwardsHello();
print(hello.getHelloString());
hello = ShoutyHello();
print(hello.getHelloString());