setIV method

Future<bool?> setIV({
  1. required String key,
  2. required String value,
  3. required String sharedPreferences,
})
override

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;
}