-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
18 deletions.
There are no files selected for viewing
22 changes: 4 additions & 18 deletions
22
packages/celest_core/lib/src/secure_storage/secure_storage_platform.web.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,9 @@ | ||
import 'package:celest_core/src/secure_storage/secure_storage.dart'; | ||
|
||
final class SecureStoragePlatform implements SecureStorage { | ||
SecureStoragePlatform({ | ||
String? scope, | ||
}) : _impl = MemorySecureStorage(scope: scope ?? _defaultScope); | ||
|
||
final SecureStorage _impl; | ||
extension type SecureStoragePlatform._(SecureStorage _impl) | ||
implements SecureStorage { | ||
SecureStoragePlatform({String? scope}) | ||
: _impl = MemorySecureStorage(scope: scope ?? _defaultScope); | ||
|
||
static const _defaultScope = 'dev.celest.celest'; | ||
|
||
@override | ||
void clear() => _impl.clear(); | ||
|
||
@override | ||
String? delete(String key) => _impl.delete(key); | ||
|
||
@override | ||
String? read(String key) => _impl.read(key); | ||
|
||
@override | ||
String write(String key, String value) => _impl.write(key, value); | ||
} |