copyWith method

WindowsSecureStorageOptions copyWith({
  1. String? storagePath,
})

Implementation

WindowsSecureStorageOptions copyWith({String? storagePath}) {
  return WindowsSecureStorageOptions(
    storagePath: storagePath ?? this.storagePath,
  );
}