SStorageService constructor Null safety
- String apiId,
- RsaPrivateKey privateKey
Initializes a SStorageService using apiId
for user identification and
privateKey
for signing token requests.
Implementation
SStorageService(String apiId, RsaPrivateKey privateKey)
: _repository = SStorageRepository(),
_privateKey = privateKey,
_apiId = apiId,
super();