Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.4K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.5K+ articles
School Learning
11.1K+ articles
JavaScript
9.9K+ articles
Dart
110+ articles
Dart-Classes
6+ articles
Dart Class-object
1+ articles
Dart-OOPs
9 posts
Recent Articles
How to Create Private Class in Dart?
Last Updated: 28 April 2025
In this article, we see how we can make the private class in dart. You know how to make the public class in dart. Here is the syntax for making the public class in the dar...
read more
Dart
Dart-OOPs
Dart - extends Vs with Vs implements
Last Updated: 03 April 2025
All developers working with Dart for application development using the Flutter framework regularly encounter different usages of the implements, extends, and keywords. In ...
read more
Picked
Dart
Flutter
Dart-OOPs
Dart-Interface
Dart-Classes
Method Overriding in Dart
Last Updated: 02 April 2025
Method overriding occurs in Dart when a child class tries to override the parent class's method. When a child class extends a parent class, it gets full access to the meth...
read more
Dart
Dart-OOPs
Getter and Setter Methods in Dart
Last Updated: 03 April 2025
Getter and Setter methods are class methods used to manipulate the data of class fields. Getter is used to read or get the data of the class field, whereas setter is used ...
read more
Dart
Dart-OOPs
Dart - Classes And Objects
Last Updated: 12 July 2025
Dart is an object-oriented programming language, so it supports the concept of class, object, etc. In Dart, we can define classes and objects of our own. We use the class ...
read more
Dart
Dart-OOPs
Abstract Classes in Dart
Last Updated: 03 April 2025
An abstract class in Dart is defined as a class that contains one or more abstract methods (methods without implementation). To declare an abstract class, we use the abstr...
read more
Dart
Dart-OOPs
Dart Class-object
Super Constructor in Dart
Last Updated: 02 April 2025
In Dart, the subclass can inherit all the variables and methods of the parent class with the use of the extends keyword, but it can't inherit the constructor of the parent...
read more
Dart
Dart-OOPs
Dart - Concept of Inheritance
Last Updated: 12 July 2025
In Dart, one class can inherit another class, i.e. dart can create a new class from an existing class. We make use of extend keyword to do so.Terminology:Parent Class: It ...
read more
Dart
Dart-OOPs
Constructors in Dart
Last Updated: 02 April 2025
Dart also provides the support of constructors. Constructors are a special method that is used to initialize fields when an object is created in the program. In object-ori...
read more
Dart
Dart-OOPs
Dart-Classes