destinations property

List<Object?>? destinations

Implementation

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

Implementation

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