fix typo in stats_repository.dart

This commit is contained in:
LHR
2024-08-10 21:11:58 +08:00
parent 9de23d1a24
commit f403f0d897

View File

@@ -24,7 +24,7 @@ class StatsRepositoryImpl
(event) => StatsEntity( (event) => StatsEntity(
uplink: event.uplink, uplink: event.uplink,
downlink: event.downlink, downlink: event.downlink,
uplinkTotal: event.downlink, uplinkTotal: event.uplinkTotal,
downlinkTotal: event.downlinkTotal, downlinkTotal: event.downlinkTotal,
), ),
) )