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

@ -7,12 +7,13 @@
class ScLocalizationData {
ScLocalizationData({
this.enable,
this.versionName,
this.updateAt,
this.info,
this.gameChannel,
this.note,});
this.enable,
this.versionName,
this.updateAt,
this.info,
this.gameChannel,
this.note,
});
ScLocalizationData.fromJson(dynamic json) {
enable = json['enable'];
@ -39,5 +40,4 @@ class ScLocalizationData {
map['note'] = note;
return map;
}
}
}