locations property

List<LatLng?>? locations

Implementation

List<LatLng?>? get locations =>
    getProperty(this, 'locations')?.cast<LatLng?>();
void locations=(List<LatLng?>? value)

Implementation

set locations(List<LatLng?>? value) {
  setProperty(this, 'locations', value);
}