getLocalWebSearchList static method
Implementation
static Future<List<String>> getLocalWebSearchList() async {
var result = await SPService.instance.get(urlSearchHis, '');
if (result.isEmpty) {
return <String>[];
} else {
return jsonDecode(result).cast<String>();
}
}