Upgrade to flutter_rust_bridge V2

This commit is contained in:
2024-02-06 20:19:53 +08:00
parent 55f5bac8d9
commit a6c9b46100
46 changed files with 2121 additions and 1213 deletions

View File

@@ -9,14 +9,15 @@
class GamePerformanceData {
GamePerformanceData({
this.key,
this.name,
this.info,
this.type,
this.max,
this.min,
this.value,
this.group,});
this.key,
this.name,
this.info,
this.type,
this.max,
this.min,
this.value,
this.group,
});
GamePerformanceData.fromJson(dynamic json) {
key = json['key'];
@@ -49,5 +50,4 @@ class GamePerformanceData {
map['group'] = group;
return map;
}
}
}