Future<String?> encrypt(final dynamic object) async => object == null ? null : (await _encrypter).encrypt(object.toString(), iv: await _iv).base64;