Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-07-23 16:47:11 +08:00
parent 148e0872b4
commit 418a1e8d39
821 changed files with 29467 additions and 25520 deletions

View File

@@ -18,13 +18,13 @@ class ElecSet {
});
factory ElecSet.fromJson(Map<String, dynamic> json) => ElecSet(
elecTheme: json['elec_theme'] as int?,
rmbRate: json['rmb_rate'] as int?,
integrityRate: json['integrity_rate'] as int?,
roundMode: json['round_mode'] as int?,
elecList: (json['elec_list'] as List<dynamic>?)
?.map((e) => ElecList.fromJson(e as Map<String, dynamic>))
.toList(),
batteryItemDesc: json['battery_item_desc'] as String?,
);
elecTheme: json['elec_theme'] as int?,
rmbRate: json['rmb_rate'] as int?,
integrityRate: json['integrity_rate'] as int?,
roundMode: json['round_mode'] as int?,
elecList: (json['elec_list'] as List<dynamic>?)
?.map((e) => ElecList.fromJson(e as Map<String, dynamic>))
.toList(),
batteryItemDesc: json['battery_item_desc'] as String?,
);
}