reorder file structure

This commit is contained in:
2025-06-11 09:45:54 +02:00
parent 9824cbc220
commit d448739bd6
117 changed files with 241 additions and 242 deletions

View File

@@ -0,0 +1,47 @@
// ignore: file_names
class Business {
final String business_id;
final String Name;
final String type;
final String registration_no;
final String logo_name;
final String logo_path;
final String contact_no;
final String bus_email;
final String app_id;
final String gps_location;
final String practice_no;
final String vat_no;
const Business(
this.business_id,
this.Name,
this.type,
this.registration_no,
this.logo_name,
this.logo_path,
this.contact_no,
this.bus_email,
this.app_id,
this.gps_location,
this.practice_no,
this.vat_no,
);
factory Business.fromJson(dynamic json) {
return Business(
json['business_id'],
json['Name'],
json['type'],
json['registration_no'],
json['logo_name'],
json['logo_path'],
json['contact_no'],
json['bus_email'],
json['app_id'],
json['gps_location'],
json['practice_no'],
json['vat_no'],
);
}
}