#14 Interface in Dart || Dart OOP Tutorials For Beginners in Hindi/Urdu

Поділитися
Вставка
  • Опубліковано 20 жов 2024

КОМЕНТАРІ • 30

  • @Kigguij
    @Kigguij 3 місяці тому

    Jazakallah sir bohot achi video thi

  • @Unknownue8686
    @Unknownue8686 3 місяці тому

    Good explanation, thank you sir 💖

  • @abdulrafay0540
    @abdulrafay0540 2 місяці тому

    Thanks Sir🥰😃😃

  • @MuhammadHamza-dh5jo
    @MuhammadHamza-dh5jo 3 місяці тому

    Sir did you had a playlist on unit testing? I think there was a playlist but I can't find it.

  • @hamza_tariq019
    @hamza_tariq019 2 місяці тому

    bro logic building ky lia kry?

    • @thetechbrotherss
      @thetechbrotherss  2 місяці тому

      practice kro, solve small problems and understand the concepts and problem

  • @subhadeepdas52
    @subhadeepdas52 3 місяці тому

    Sir how many videos are left for this oops playlist?

  • @surprisingfact799
    @surprisingfact799 3 місяці тому

    Sir, please make a video on Flutter internship. Which covers the topic. How can get the internship in app development when we are eligible for the internship of the flutter. How much salary of the flutter developer

  • @Abdul-Wahab-Awan288
    @Abdul-Wahab-Awan288 Місяць тому

    Dope

  • @AhsanAzhar
    @AhsanAzhar 3 місяці тому

    Bro Interview series kab A rahi hai?

    • @thetechbrotherss
      @thetechbrotherss  3 місяці тому +1

      Soon

    • @surprisingfact799
      @surprisingfact799 3 місяці тому

      ​@@thetechbrotherss Sir agar koi new student flutter learn kar na chayia to us ko up ki playlist kis tarteb se dekney cheyia yani ka API STATEMANG MANAGE DART OPP BLOC YA FLUTTER BOOTCAMP PLZ repy me soon

  • @Sahil-15
    @Sahil-15 3 місяці тому

    sir flutter ke liye backend main kya sikhna sahi hoga?

    • @thetechbrotherss
      @thetechbrotherss  3 місяці тому

      Flutter k sath apko dart language anni chahie q k flutter k sath dart use hoti ha

    • @Sahil-15
      @Sahil-15 3 місяці тому

      @@thetechbrotherss hann sir dart toh Sikh Raha mtlb jaise web dev main backend k liye momgodb,node ye sab hota flutter k liye Aisa kuch hai kya

  • @زلزال-س3ر
    @زلزال-س3ر 2 місяці тому

    as a native android developer muje interface aur mixin same lag rhy isme kafi had tak

  • @Kigguij
    @Kigguij 3 місяці тому

    Sir aap polymorphism ky liye 1 boy ki example dy sakty thy ky 1 time pe wo ghar mein beta hai phir wo school mein as a student act kr raha hai
    Aggar job krta hai to as an employee act kr raha hai at the end banda 1 hi hai but differently behave kr raha hai this is called polymorphism

  • @dayanshah2170
    @dayanshah2170 15 днів тому

    void main() {
    Student student = Student();
    student.name();
    }
    abstract class Person {
    void name();
    void age() {
    print('I am 12 years old');
    }
    }
    class Student extends Person {
    @override
    void name() {
    super.age();
    print('Hello my name is dayan');
    }
    }
    class Teacher extends Person {
    @override
    void name() {
    print('My name is asif khan');
    }
    }
    simple progarm of interface using abstract class and this interface class supports different features like abstraction,polymorphism, inheritance etc .