addPassphrase method
void
addPassphrase()
Implementation
void addPassphrase(String passphrase, bool hashed, String? licenseId,
String? provider, String? userId) {
String hashedPassphrase =
(hashed) ? passphrase : sha256.convert(passphrase.codeUnits).toString();
repository.addPassphrase(hashedPassphrase, licenseId, provider, userId);
}