6 lines
115 B
Dart
6 lines
115 B
Dart
![]() |
class Person {
|
||
|
final String firstName;
|
||
|
final String lastName;
|
||
|
const Person(this.firstName, this.lastName);
|
||
|
}
|