settings property

LandmarkBrowseSessionSettings get settings

Get the browse session settings

Modifing the returned object will have no effect on the session

Returns

  • The settings

Throws

  • An exception if it fails

Implementation

LandmarkBrowseSessionSettings get settings {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'LandmarkBrowseSession',
    'getSettings',
  );

  return LandmarkBrowseSessionSettings.fromJson(resultString['result']);
}