destinations property

List<Object?>? get destinations

Implementation

List<Object? /*String?|LatLng?|Place?*/ >? get destinations =>
    getProperty(this, 'destinations')
        ?.cast<Object? /*String?|LatLng?|Place?*/ >();
set destinations (List<Object?>? value)

Implementation

set destinations(List<Object? /*String?|LatLng?|Place?*/ >? value) {
  setProperty(this, 'destinations', value);
}