setIV method
Implementation
Future<bool?> setIV({
required String key,
required String value,
required String sharedPreferences,
}) async {
final res = await methodChannel.invokeMethod<bool?>(
'storeSharedPreferences',
{
'sharedPreferenceName': sharedPreferences,
'tag': key,
'message': value,
},
);
return res;
}