Future<dynamic> decrypt(final String? string) async => string == null ? null : (await _encrypter).decrypt(Encrypted.fromBase64(string), iv: await _iv);