copyWith method
StarRevenueStatistics
copyWith({
- StatisticalGraph? revenueByDayGraph,
- StarRevenueStatus? status,
- double? usdRate,
Implementation
StarRevenueStatistics copyWith({
StatisticalGraph? revenueByDayGraph,
StarRevenueStatus? status,
double? usdRate,
}) => StarRevenueStatistics(
revenueByDayGraph: revenueByDayGraph ?? this.revenueByDayGraph,
status: status ?? this.status,
usdRate: usdRate ?? this.usdRate,
);