You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
482 B

7 months ago
class Address {
7 months ago
final int? id;
final String streetName;
final String comments;
7 months ago
Address({
7 months ago
this.id,
7 months ago
required this.streetName,
required this.comments,
});
7 months ago
factory Address.fromMap(Map<String, dynamic> json) => Address(
id: json["id"],
7 months ago
streetName: json["street_name"],
comments: json["comments"],
);
7 months ago
Map<String, dynamic> toMap() => {
"id": id,
7 months ago
"street_name": streetName,
"comments": comments,
};
}