mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-06-01 08:38:18 +08:00
@@ -1,14 +1,14 @@
|
||||
class CoinLogItem {
|
||||
final String time;
|
||||
final String delta;
|
||||
final String reason;
|
||||
|
||||
const CoinLogItem({
|
||||
required this.time,
|
||||
required this.delta,
|
||||
required this.reason,
|
||||
});
|
||||
|
||||
final String time;
|
||||
final String delta;
|
||||
final String reason;
|
||||
|
||||
factory CoinLogItem.fromJson(Map<String, dynamic> json) => CoinLogItem(
|
||||
time: json['time'],
|
||||
delta: (json['delta'] as num).toString(),
|
||||
|
||||
Reference in New Issue
Block a user