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.
15 lines
301 B
Dart
15 lines
301 B
Dart
|
1 month ago
|
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,
|
||
|
|
});
|
||
|
|
}
|