Skip to content

Instantly share code, notes, and snippets.

@OnlyTarg
Last active May 7, 2025 13:56
Show Gist options
  • Save OnlyTarg/64e51a3b122f770fe9fa8dd6853b61c8 to your computer and use it in GitHub Desktop.
Save OnlyTarg/64e51a3b122f770fe9fa8dd6853b61c8 to your computer and use it in GitHub Desktop.
Creating Objects in Dart.
void main() {
final user = Person('Oleh', 29);
user.sayHello();
}
class Person {
Person(this.name, this.age);
String name;
int age;
void sayHello() {
print('Hi, my name is $name and I am $age years old.');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment