class Branch { final String name; final double latitude; final double longitude; final String contactNumber; final String address; Branch({ required this.name, required this.latitude, required this.longitude, required this.contactNumber, required this.address, }); }