123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- class Offices {
- final String office;
- final String doctor;
- final String specialty;
- final String address;
-
- var variable = 32;
-
- var docs = ["Collazo", "Albizu"];
- var spec = ["General", "Pediatra"];
- var addrs = ["Bo. Montellano, Cayey", "Las Dalias, Mayagüez"];
-
- Offices(this.office, this.doctor, this.specialty, this.address);
-
-
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
|