You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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,
|
|
});
|
|
} |