getPathByName method
- String name
Get the path specified by name.
Parameters
- IN name The path name
Returns
- The path
Throws
- An exception if it fails.
Implementation
Path getPathByName(final String name) {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewPathCollection',
'getPathByName',
args: name,
);
return Path.init(resultString['result'], _mapId);
}