name property
The collection's human-readable name.
Returns
- The current collection name as a String.
Implementation
String get name {
final OperationResult resultString = objectMethod(
pointerId,
'MarkerCollection',
'getName',
);
return resultString['result'];
}
Set the collection's name.
Parameters
name: New name for the collection.
Implementation
set name(final String name) {
objectMethod(pointerId, 'MarkerCollection', 'setName', args: name);
}