paths property
Get access to the collection of visible paths.
Returns
- The paths collection
Implementation
MapViewPathCollection get paths {
if (_paths == null) {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewPreferences',
'paths',
dependencyId: _mapPointerId,
);
_paths = MapViewPathCollection.init(
resultString['result'], _mapId, _mapPointerId);
}
return _paths!;
}