Skip to content

Instantly share code, notes, and snippets.

@vijayinyoutube
Last active June 11, 2022 13:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vijayinyoutube/7183c956c1338f417e8bfe2ffc4a029c to your computer and use it in GitHub Desktop.
Save vijayinyoutube/7183c956c1338f417e8bfe2ffc4a029c to your computer and use it in GitHub Desktop.
class Student {
String? name;
String? id;
void method1() {
debugPrint('This is method 1. Name: $name');
}
void method2() {
debugPrint('This is method 2. ID: $id');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment