geoLocations property

List<VCardGeoLocation> get geoLocations

A list of all children of type "GeoLocation".

Implementation

List<document_wrapper.VCardGeoLocation> get geoLocations => document
    .childrenByDocumentType("GeoLocation")
    .map((child) => document_wrapper.VCardGeoLocation(child))
    .toList();