path property

String get path

Get the path where settings written using this SettingsService object are stored.

Returns

  • The path where settings are stored

Throws

  • An exception if it fails

Implementation

String get path {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'SettingsService',
    'getPath',
  );

  return resultString['result'];
}