MIH Profile Links

This commit is contained in:
2026-05-27 15:36:56 +02:00
parent 33d07b1617
commit 052f937027
30 changed files with 2240 additions and 499 deletions
+12 -4
View File
@@ -2,15 +2,19 @@ class ProfileLink {
final int idprofile_links;
final String app_id;
final String business_id;
final String site_name;
final String custom_name;
final String destination;
final String web_link;
final int order;
const ProfileLink({
required this.idprofile_links,
required this.app_id,
required this.business_id,
required this.site_name,
required this.custom_name,
required this.destination,
required this.web_link,
required this.order,
});
factory ProfileLink.fromJson(Map<String, dynamic> json) {
@@ -18,8 +22,10 @@ class ProfileLink {
idprofile_links: json['idprofile_links'],
app_id: json['app_id'],
business_id: json['business_id'],
site_name: json['site_name'],
custom_name: json['custom_name'],
destination: json['destination'],
web_link: json['web_link'],
order: json['order'],
);
}
@@ -28,8 +34,10 @@ class ProfileLink {
'idprofile_links': idprofile_links,
'app_id': app_id,
'business_id': business_id,
'site_name': site_name,
'custom_name': custom_name,
'destination': destination,
'web_link': web_link,
'order': order,
};
}
}