Jinali Ghogharijinali.hashnode.dev·Mar 30, 2024Dart Interfaces: Implicit Interface | Software ArchitectureImplicit Interface Implicit interfaces in Dart mean that a class automatically implements an interface that consists of all its instance methods and getters. In other words, if a class has certain methods or properties, it can be treated as implement...Dartdart interfaces
Jinali Ghogharijinali.hashnode.dev·Mar 30, 2024Dart Abstract Class: Treating Concrete Classes as AbstractIn Dart, concrete classes are like ready-made tools with specific functions. They're already built and ready to use. But sometimes, we might not want to think about all the specific details of how they work. Instead, we just want to focus on what the...Dartdart development
Jinali Ghogharijinali.hashnode.dev·Mar 30, 2024Dart Abstract Class: Concrete SubclassIn Dart programming, abstract classes provide a blueprint for defining common behavior and structure, but concrete subclasses play a crucial role in bringing these abstract concepts to life. What is an Abstract Class? Before diving into concrete subc...Dartdart basics