Lesson 13: Classes and Objects


class Person {
  String name;
  int age;

  Person(this.name, this.age);
}

void main() {
  Person user = Person('Yusuf', 20);
  print(user.name);
}
    
Previous Next Lesson