toApiKey method

ApiKeyModel toApiKey(
  1. String encrypterSecretKey
)

Implementation

ApiKeyModel toApiKey(String encrypterSecretKey) {
  ApiKeyGenerator generator =
      ApiKeyGenerator(encrypterSecretKey: encrypterSecretKey);
  var model = generator.parseApiHash(apiHash);
  return model;
}