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.
uco-mobile-poc/lib/app/models/Branch.dart

15 lines
301 B
Dart

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,
});
}