ความคิดเห็น •

  • @Codemycom
    @Codemycom 2 ปีที่แล้ว +1

    ▶ Watch Entire Dart Playlist ✅ Subscribe To My TH-cam Channel:
    bit.ly/3MrAlfh bit.ly/2IGzvOR
    ▶ See More At: ✅ Join My Facebook Group:
    Codemy.com bit.ly/2GFmOBz
    ▶ Learn to Code at Codemy.com ✅ Buy a Codemy T-Shirt!
    Take $30 off with coupon code: youtube1 bit.ly/2VC9WUN
    ▶ Get The Code:
    bit.ly/3EOXo18

  • @hasnatsyed
    @hasnatsyed 9 หลายเดือนก่อน

    excellent explanation

    • @Codemycom
      @Codemycom 9 หลายเดือนก่อน

      thanks

  • @umairmalik4102
    @umairmalik4102 2 ปีที่แล้ว +1

    hello
    i am a huge fan of you
    please can you create tutorial series for fastapi frame work of python

    • @Codemycom
      @Codemycom 2 ปีที่แล้ว

      Sorry, don't know what that is

  • @LeoTechy
    @LeoTechy 2 ปีที่แล้ว

    How do you create an instance of that class with no initialization. class with required fields
    before it used to be
    ClassName name = new ClassName();
    but now it doesn't work

    • @Codemycom
      @Codemycom 2 ปีที่แล้ว

      Don't use the constructor, instead build a method to assign the things later.

    • @gofullstack
      @gofullstack 9 หลายเดือนก่อน

      For a model/data class, I'd rather do this;
      enum Sex {male, female}
      class Person{
      final String name;
      final Sex sex;
      final int age;
      const Person({required this.name, required this.sex, required this. age});
      /// Create copyWith() method here
      /// Create toMap() method here
      /// Create factory Person.fromMap()
      @override
      String toString() => 'Person(name: $name, sex: $sex, age: $age)';
      }
      final person = Person(name: 'John', sex: Sex.male, age: 44);
      print(person);
      Dart should figure out what type the variable "person" is.

  • @evilroxxx
    @evilroxxx 7 หลายเดือนก่อน

    Why is String with uppercase S but all other types are lower case?

    • @MTPMCMEDIA
      @MTPMCMEDIA 2 หลายเดือนก่อน

      Basically, if you watch closely, you will notice that all the iterables start with a cap. Like List, Map, String, etc.

  • @Rishi_Kumar360
    @Rishi_Kumar360 2 ปีที่แล้ว +1

    Bro you can make video on Hindi??

    • @Codemycom
      @Codemycom 2 ปีที่แล้ว +2

      No, I don't speak Hindi.

    • @Rishi_Kumar360
      @Rishi_Kumar360 2 ปีที่แล้ว +1

      Ok 👌🌼 Your Videos is very helpful love from India

  • @lilgohan
    @lilgohan 6 หลายเดือนก่อน

    3:39 take a shot every time he says "this"