first commit

This commit is contained in:
Alzalia 2025-08-05 10:32:18 +02:00
commit faf67cc6d8
148 changed files with 6580 additions and 0 deletions

View file

@ -0,0 +1,22 @@
import 'package:flutter/material.dart';
class Owner extends ChangeNotifier {
Owner({
required this.firstName,
required this.lastName,
required this.contact,
required this.id,
});
String firstName;
String lastName;
String contact;
int id;
factory Owner.fromJSON(Map<String, dynamic> json) => Owner(
contact: json["contact"],
firstName: json["first_name"],
lastName: json["last_name"],
id: json["id"],
);
}