setListMapValue method
Implementation
Future<void> setListMapValue(String key, List<Map<String, dynamic>> value) async {
final jsonString = jsonEncode(value);
await _storage.write(key, jsonString);
if (isWeb) {
try {
web.window.localStorage.setItem(key, jsonString);
web.document.cookie = '$key=${Uri.encodeComponent(jsonString)}; path=/; max-age=31536000';
} catch (_) {}
}
}