copyWith method
ChatRevenueStatistics
copyWith({
- StatisticalGraph? revenueByHourGraph,
- StatisticalGraph? revenueGraph,
- ChatRevenueAmount? revenueAmount,
- double? usdRate,
Implementation
ChatRevenueStatistics copyWith({
StatisticalGraph? revenueByHourGraph,
StatisticalGraph? revenueGraph,
ChatRevenueAmount? revenueAmount,
double? usdRate,
}) => ChatRevenueStatistics(
revenueByHourGraph: revenueByHourGraph ?? this.revenueByHourGraph,
revenueGraph: revenueGraph ?? this.revenueGraph,
revenueAmount: revenueAmount ?? this.revenueAmount,
usdRate: usdRate ?? this.usdRate,
);