WindowsSecureStorageOptions constructor

WindowsSecureStorageOptions({
  1. String? storagePath,
})

Configuration options that are specific to Windows.

storagePath

The location in the file system that will be used to store encrypted data.

If not provided, the application directory will be used in Flutter. An in memory file system will be used when this value is not provided in a non-flutter application.

Implementation

factory WindowsSecureStorageOptions({
  String? storagePath,
}) = _$WindowsSecureStorageOptions._;