name property

String get name

Returns the persisted name of this landmark store.

Returns

Implementation

String get name {
  final OperationResult resultString = objectMethod(
    pointerId,
    'LandmarkStore',
    'getName',
  );

  return resultString['result'];
}