1import 'package:equatable/equatable.dart';
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,
25 List<Object?> get
props => [
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
abstract class UseCase< Type, Params > props