Aidra Connect 10.0.2+16
Aidra Connect Mobile Application
Loading...
Searching...
No Matches
dashboard_entity.dart
Go to the documentation of this file.
1import 'package:equatable/equatable.dart';
2
3class DashboardEntity extends Equatable {
4 final num? collectionNumbers;
7 final num? earningLastMonth;
9 final num? volumeCollected;
10 final num? volumeDeclared;
11 final num? westPerformance;
12
14 required this.collectionNumbers,
15 required this.declaredVsCollected,
16 required this.earningActualMonth,
17 required this.earningLastMonth,
18 required this.earningLastTwoMonth,
19 required this.volumeCollected,
20 required this.volumeDeclared,
21 required this.westPerformance,
22 });
23
24 @override
25 List<Object?> get props => [
26 collectionNumbers,
34 ];
35}
final num earningLastTwoMonth
final num earningLastMonth
final num declaredVsCollected
final num collectionNumbers
const DashboardEntity({ required this.collectionNumbers, required this.declaredVsCollected, required this.earningActualMonth, required this.earningLastMonth, required this.earningLastTwoMonth, required this.volumeCollected, required this.volumeDeclared, required this.westPerformance, })
final num westPerformance
final num volumeCollected
final num earningActualMonth
final num volumeDeclared
abstract class UseCase< Type, Params > props