Skip to content

Instantly share code, notes, and snippets.

@MelbourneDeveloper
Created November 5, 2022 02:41
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 MelbourneDeveloper/e7b45c29cdf5f5522d65fb3b6dc18ee3 to your computer and use it in GitHub Desktop.
Save MelbourneDeveloper/e7b45c29cdf5f5522d65fb3b6dc18ee3 to your computer and use it in GitHub Desktop.
Person Class
class Person {
Person(
this.firstName,
this.lastName,
this.age,
this.numbers,
);
final String firstName;
final String lastName;
final int age;
final List<int> numbers;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment