name property
Returns the persisted name of this landmark store.
Returns
- String: The store name.
Implementation
String get name {
final OperationResult resultString = objectMethod(
pointerId,
'LandmarkStore',
'getName',
);
return resultString['result'];
}