Programming in Dart: Classes

Jun 28 2022 · Dart 2.17, Flutter 3.0, DartPad

Part 2: Learn Inheritance

12. Understand Inheritance

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: 11. Introduction Next episode: 13. Override Methods

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.

Often times, you’ll define a class but you may need to make a slight alteration to a class for a specific situation. This is would result in you either copying and pasting the class to make your edits or you’d jury rig some solution that would increase the overall complexity of the class.

class Person {

}
String firstName;
String lastName;
Person(this.firstName, this.lastName);
String getFullName() => '$firstName $lastName';
class Student extends Person {

}
Student(this.firstName, this.lastName);
Student(String firstName, String lastName) : super(firstName, lastName);
Student(super.firstName, super.lastName) 
var student = Student('Ray', 'Wenderlich');
print(student.getFullName());
student.