16 lines
272 B
Dart
16 lines
272 B
Dart
class Address {
|
|
String street;
|
|
String housingNumber;
|
|
String postalCode;
|
|
String city;
|
|
String country;
|
|
|
|
Address({
|
|
required this.street,
|
|
required this.housingNumber,
|
|
required this.postalCode,
|
|
required this.city,
|
|
required this.country,
|
|
});
|
|
}
|