Question - What are the types of Inheritance in Dart?
Answer -
Single Inheritance: This inheritance occurs when a class inherits from a single parent class.
Multiple Inheritance: This inheritance occurs when a class inherits from more than one parent class. This is not supported by Dart.
Multi-Level Inheritance: This inheritance occurs when a class inherits another child class.
Hierarchical Inheritance: More than one class has the same parent class under hierarchical inheritance.