-
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
4 changed files
with
58 additions
and
32 deletions.
There are no files selected for viewing
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
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
24 changes: 0 additions & 24 deletions
24
packages/celest_core/lib/src/secure_storage/secure_storage.stub.dart
This file was deleted.
Oops, something went wrong.
24 changes: 16 additions & 8 deletions
24
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,15 +1,23 @@ | ||
import 'package:celest_core/src/secure_storage/secure_storage.dart'; | ||
import 'package:celest_core/src/secure_storage/secure_storage.stub.dart'; | ||
import 'package:meta/meta.dart'; | ||
|
||
abstract base class SecureStoragePlatform implements SecureStorage { | ||
factory SecureStoragePlatform({ | ||
final class SecureStoragePlatform implements SecureStorage { | ||
SecureStoragePlatform({ | ||
String? scope, | ||
}) => | ||
SecureStoragePlatformStub(scope: scope ?? _defaultScope); | ||
}) : _impl = MemorySecureStorage(scope: scope ?? _defaultScope); | ||
|
||
final SecureStorage _impl; | ||
|
||
static const _defaultScope = 'dev.celest.celest'; | ||
|
||
@protected | ||
const SecureStoragePlatform.base(); | ||
@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); | ||
} |