script Batch operations

This commit is contained in:
wanghongenpin
2024-03-11 01:55:17 +08:00
parent e34578f37b
commit 67d16c761d
10 changed files with 515 additions and 220 deletions

View File

@@ -304,7 +304,7 @@ class ScriptItem {
return urlReg!.hasMatch(url);
}
factory ScriptItem.fromJson(Map<String, dynamic> json) {
factory ScriptItem.fromJson(Map<dynamic, dynamic> json) {
return ScriptItem(json['enabled'], json['name'], json['url'], scriptPath: json['scriptPath']);
}