getMultiIntList abstract method

Future<Map<String, List<int>>> getMultiIntList(
  1. List<String> keys
)

getMultiIntList use for get multiple list of integer at once

return Map of key value pair according to keys, if any key is not found then throw PrefException exception

Example :

ProSheredPreference sheredPrefHelper = ProSheredPreference();

try {
  Map<String, List<int>> result = await sheredPrefHelper.getMultiIntList(["key1","key2","key3"]);
  print(result);       // print data according to keys
} on PrefException catch (e) {
  print(e.toString());
}

Implementation

Future<Map<String, List<int>>> getMultiIntList(List<String> keys);