SStorageService constructor Null safety

SStorageService(
  1. String apiId,
  2. 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();